None
**Instruments Affected**: NIRSpec
Tested on CV3 data
The library imports relevant to this notebook are aready taken care of by importing PTT.
NOTE: This notebook assumes that the pipeline version to be tested is already installed and its environment is activated.
To be able to run this notebook you need to install nptt.
If all goes well you will be able to import PTT.
import os
import psutil
import subprocess
from glob import glob
import jwst
from jwst.pipeline.calwebb_detector1 import Detector1Pipeline
from jwst.assign_wcs.assign_wcs_step import AssignWcsStep
from jwst.msaflagopen.msaflagopen_step import MSAFlagOpenStep
from jwst.extract_2d.extract_2d_step import Extract2dStep
from jwst.srctype.srctype_step import SourceTypeStep
from jwst.flatfield.flat_field_step import FlatFieldStep
from jwst.pathloss.pathloss_step import PathLossStep
from jwst.barshadow import BarShadowStep
from jwst import datamodels
# The latest version of NPTT is installed in the requirements text file at:
# /jwst_validation_notebooks/environment.yml
# import NPTT
import nirspec_pipe_testing_tool as nptt
# To get data from Artifactory
from ci_watson.artifactory_helpers import get_bigdata
# Create a temporary directory to hold notebook output, and change the working directory to that directory.
from tempfile import TemporaryDirectory
import shutil
data_dir = TemporaryDirectory()
# If you have files that are in the notebook's directory, but that the notebook will need to use while
# running, copy them into the temporary directory here.
#
# files = ['name_of_file']
# for file_name in files:
# shutil.copy(file_name, os.path.join(data_dir.name, file_name))
os.chdir(data_dir.name)
# Make sure that the version used is the right one
pipeline_version = jwst.__version__
nptt_version = nptt.__version__
print("Using jwst pipeline version: ", pipeline_version)
print("Using NPTT version: ", nptt_version)
Using jwst pipeline version: 1.1.0 Using NPTT version: 1.1.11
The NIRSpec team implemented code for the barshadow step and then compared the output with the the pipeline. The test is considered passed if the difference between the two outputs is smaller than 5%, the error provided by the IDT team (or 0.0025 in absolute numbers).
For the test to be considered PASSED, every single MOS slitlet has to pass. If there is any failure, the whole test will be considered as FAILED.
The code for this test can be obtained from: https://github.com/spacetelescope/nirspec_pipe_testing_tool/blob/master/nirspec_pipe_testing_tool/calwebb_spec2_pytests/auxiliary_code/barshadow_testing.py.
Step description: https://jwst-pipeline.readthedocs.io/en/latest/jwst/barshadow/description.html
Pipeline code: https://github.com/spacetelescope/jwst/tree/master/jwst/barshadow
If the test PASSED this means that all slits, slitlets, or slices individually passed the test. However, if ony one individual MOS slitlet, the whole test will be reported as FAILED.
A short description and link to the page: https://outerspace.stsci.edu/pages/viewpage.action?spaceKey=JWSTCC&title=Vanilla+MSA+Bar+Shadow+Correction
Acronymns used un this notebook:
pipeline: calibration pipeline
spec2: spectroscopic calibration pipeline level 2b
PTT: NIRSpec pipeline testing tool (https://github.com/spacetelescope/nirspec_pipe_testing_tool)
The pipeline can be run from the command line in two variants: full or per step.
Tu run the spec2 pipeline in full use the command:
$ strun jwst.pipeline.Spec2Pipeline jwtest_rate.fits
Tu only run the barshadow step, use the command:
$ strun jwst.barshadow.BarShadowStep jwtest_previous_step_output.fits
These options are also callable from a script with the testing environment active. The Python call for running the pipeline in full or by step are:
$\gt$ from jwst.pipeline.calwebb_spec2 import Spec2Pipeline
$\gt$ Spec2Pipeline.call(jwtest_rate.fits)
or
$\gt$ from jwst.barshadow import BarShadowStep
$\gt$ BarShadowStep.call(jwtest_previous_step_output.fits)
PTT can run the spec2 pipeline either in full or per step, as well as the imaging pipeline in full. In this notebook we will use PTT to run the pipeline and the validation tests. To run PTT, follow the directions in the corresponding repo page.
All testing data is from the CV3 campaign. We chose these files because this is our most complete data set, i.e. all modes and filter-grating combinations.
Data used was for testing was only MOS:
testing_data = {
'mos_prism_clear':{
'uncal_file_nrs1': 'mos_prism_nrs1_uncal.fits',
'uncal_file_nrs2': 'mos_prism_nrs2_uncal.fits',
'msa_shutter_config': 'V0030006000104_msa.fits' },
'mos_g140m_f100lp':{
'uncal_file_nrs1': 'mos_g140m_line1_NRS1_uncal.fits',
'uncal_file_nrs2': 'mos_g140m_line1_NRS2_uncal.fits',
'msa_shutter_config': 'V8460001000101_msa.fits' }
}
# define function to pull data from Artifactory
def get_artifactory_file(data_set_dict, detector):
"""This function creates a list with all the files needed per detector to run the test.
Args:
data_set_dict: dictionary, contains inputs for a specific mode and configuration
detector: string, either nrs1 or nrs2
Returns:
data: list, contains all files needed to run test
"""
files2obtain = ['uncal_file_nrs1', 'msa_shutter_config']
data = []
for file in files2obtain:
data_file = None
try:
if '_nrs' in file and '2' in detector:
file = file.replace('_nrs1', '_nrs2')
data_file = get_bigdata('jwst_validation_notebooks',
'validation_data',
'nirspec_data',
data_set_dict[file])
except TypeError:
data.append(None)
continue
data.append(data_file)
return data
# Set common NPTT switches for this test
# accepted threshold difference with respect to benchmark files
barshadow_threshold_diff = 0.0025
# other variables
mode_used = 'MOS'
write_barshadow_files = False
show_final_fig = True
save_final_fig = False
show_intermediary_figs = False
save_intermediary_figs = False
# Get the data
results_dict = {}
detectors = ['nrs1', 'nrs2']
for mode_config, data_set_dict in testing_data.items():
for det in detectors:
print('Testing files for detector: ', det)
data = get_artifactory_file(data_set_dict, det)
uncal_file, msa_shutter_config = data
print('Working with uncal_file: ', uncal_file)
uncal_basename = os.path.basename(uncal_file)
# Make sure there is a local copy of the MSA shutter configuration file
if msa_shutter_config is not None:
subprocess.run(['cp', msa_shutter_config , '.'])
# Run the stage 1 pipeline
rate_object = Detector1Pipeline.call(uncal_file)
# Make sure the MSA shutter configuration file is set up correctly
if msa_shutter_config is not None:
msa_metadata = rate_object.meta.instrument.msa_metadata_file
if msa_metadata is None or msa_metadata == 'N/A':
rate_object.meta.instrument.msa_metadata_file = msa_shutter_config
# Run the stage 2 pipeline steps
try:
pipe_object = AssignWcsStep.call(rate_object)
except:
print('No open slits fall on detector ', det, '\n')
continue
pipe_object = MSAFlagOpenStep.call(pipe_object)
pipe_object = Extract2dStep.call(pipe_object)
pipe_object = SourceTypeStep.call(pipe_object)
pipe_object = FlatFieldStep.call(pipe_object, save_interpolated_flat=False)
pathloss_object = PathLossStep.call(pipe_object)
barshadow_object = BarShadowStep.call(pathloss_object)
# Run the validation test
%matplotlib inline
_, result_msg, _ = nptt.calwebb_spec2_pytests.auxiliary_code.barshadow_testing.run_barshadow_tests(
pathloss_object,
barshadow_object,
barshadow_threshold_diff=barshadow_threshold_diff,
save_final_figs=save_final_fig,
show_final_figs=show_final_fig,
save_intermediary_figs=save_intermediary_figs,
show_intermediary_figs=show_intermediary_figs,
write_barshadow_files=write_barshadow_files)
# Remove fits files from the repo directory
local_fits_files = glob('./*.fits')
for fits_file in local_fits_files:
try:
subprocess.run(['rm', fits_file])
except FileNotFound:
print('Fits file does not exist in current working directory: ', fits_file)
# Did the test passed
print("Did barshadow validation test passed? ", result_msg, "\n\n")
rd = {mode_config: result_msg}
results_dict.update(rd)
# close all open files
psutil.Process().open_files()
closing_files = []
for fd in psutil.Process().open_files():
if data_dir.name in fd.path:
closing_files.append(fd)
for fd in closing_files:
open(fd.fd).close()
Testing files for detector: nrs1 Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_prism_nrs1_uncal.fits
2021-03-13 00:09:16,952 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2021-03-13 00:09:16,954 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2021-03-13 00:09:16,955 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2021-03-13 00:09:16,957 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2021-03-13 00:09:16,958 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2021-03-13 00:09:16,959 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2021-03-13 00:09:16,960 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2021-03-13 00:09:16,961 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2021-03-13 00:09:16,962 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2021-03-13 00:09:16,963 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2021-03-13 00:09:16,964 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2021-03-13 00:09:16,965 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2021-03-13 00:09:16,966 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2021-03-13 00:09:16,967 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2021-03-13 00:09:16,969 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2021-03-13 00:09:16,970 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2021-03-13 00:09:16,971 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2021-03-13 00:09:17,051 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_prism_nrs1_uncal.fits',).
2021-03-13 00:09:17,060 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2021-03-13 00:09:17,171 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_prism_nrs1_uncal.fits' reftypes = ['dark', 'gain', 'ipc', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2021-03-13 00:09:17,180 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0086.fits'.
2021-03-13 00:09:17,181 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits'.
2021-03-13 00:09:17,182 - stpipe.Detector1Pipeline - INFO - Prefetch for IPC reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_ipc_0011.fits'.
2021-03-13 00:09:17,183 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits'.
2021-03-13 00:09:17,185 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0010.fits'.
2021-03-13 00:09:17,186 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2021-03-13 00:09:17,186 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0018.fits'.
2021-03-13 00:09:17,187 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_refpix_0022.fits'.
2021-03-13 00:09:17,188 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2021-03-13 00:09:17,189 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2021-03-13 00:09:17,189 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits'.
2021-03-13 00:09:17,190 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0113.fits'.
2021-03-13 00:09:17,191 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2021-03-13 00:09:17,192 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2021-03-13 00:09:17,192 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2021-03-13 00:09:17,497 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:17,498 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:17,681 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2021-03-13 00:09:17,682 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2021-03-13 00:09:17,683 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2021-03-13 00:09:17,751 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:17,752 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:17,768 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0010.fits
2021-03-13 00:09:18,160 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2021-03-13 00:09:18,261 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:18,263 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:18,278 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0020.fits
2021-03-13 00:09:19,044 - stpipe.Detector1Pipeline.saturation - INFO - Detected 9869 saturated pixels
2021-03-13 00:09:19,086 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2021-03-13 00:09:19,115 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2021-03-13 00:09:19,218 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:19,220 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:19,235 - stpipe.Detector1Pipeline.ipc - INFO - Using IPC reference file /grp/crds/cache/references/jwst/jwst_nirspec_ipc_0011.fits
2021-03-13 00:09:19,726 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2021-03-13 00:09:19,821 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:19,822 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:19,838 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0113.fits
2021-03-13 00:09:19,912 - stpipe.Detector1Pipeline.superbias - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating meta.exposure.readpatt the following error occurred:
'ALLIRS2' is not one of ['ACQ1', 'ACQ2', 'BRIGHT1', 'BRIGHT2', 'DEEP2', 'DEEP8', 'FAST', 'FASTGRPAVG', 'FASTGRPAVG8', 'FASTGRPAVG16', 'FASTGRPAVG32', 'FASTGRPAVG64', 'FASTR1', 'FASTR100', 'FGS', 'FGS60', 'FGS8370', 'FGS840', 'FGSRAPID', 'FINEGUIDE', 'ID', 'MEDIUM2', 'MEDIUM8', 'NIS', 'NISRAPID', 'NRS', 'NRSIRS2', 'NRSN16R4', 'NRSN32R8', 'NRSN8R2', 'NRSRAPID', 'NRSIRS2RAPID', 'NRSRAPIDD1', 'NRSRAPIDD2', 'NRSRAPIDD6', 'NRSSLOW', 'RAPID', 'SHALLOW2', 'SHALLOW4', 'SLOW', 'SLOWR1', 'TRACK', 'ANY', 'N/A']
Failed validating 'enum' in schema:
OrderedDict([('title', 'Readout pattern'),
('type', 'string'),
('enum',
['ACQ1',
'ACQ2',
'BRIGHT1',
'BRIGHT2',
'DEEP2',
'DEEP8',
'FAST',
'FASTGRPAVG',
'FASTGRPAVG8',
'FASTGRPAVG16',
'FASTGRPAVG32',
'FASTGRPAVG64',
'FASTR1',
'FASTR100',
'FGS',
'FGS60',
'FGS8370',
'FGS840',
'FGSRAPID',
'FINEGUIDE',
'ID',
'MEDIUM2',
'MEDIUM8',
'NIS',
'NISRAPID',
'NRS',
'NRSIRS2',
'NRSN16R4',
'NRSN32R8',
'NRSN8R2',
'NRSRAPID',
'NRSIRS2RAPID',
'NRSRAPIDD1',
'NRSRAPIDD2',
'NRSRAPIDD6',
'NRSSLOW',
'RAPID',
'SHALLOW2',
'SHALLOW4',
'SLOW',
'SLOWR1',
'TRACK',
'ANY',
'N/A']),
('fits_ke ...
warnings.warn(errmsg, ValidationWarning)
2021-03-13 00:09:20,254 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2021-03-13 00:09:20,344 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:20,346 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2021-03-13 00:09:20,362 - stpipe.Detector1Pipeline.refpix - INFO - Using refpix reference file: /grp/crds/cache/references/jwst/jwst_nirspec_refpix_0022.fits
2021-03-13 00:09:34,121 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2021-03-13 00:09:34,367 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:34,368 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:34,385 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0018.fits
2021-03-13 00:09:34,994 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2021-03-13 00:09:35,094 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:35,095 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'dark_output': None}
2021-03-13 00:09:35,112 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0086.fits
2021-03-13 00:09:38,371 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=4, nframes=1, groupgap=0
2021-03-13 00:09:38,372 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=65, nframes=1, groupgap=0
2021-03-13 00:09:38,831 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2021-03-13 00:09:39,335 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:39,337 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}
2021-03-13 00:09:39,345 - stpipe.Detector1Pipeline.jump - WARNING - Can not apply jump detection when NGROUPS<=4;
2021-03-13 00:09:39,345 - stpipe.Detector1Pipeline.jump - WARNING - Jump step will be skipped
2021-03-13 00:09:39,401 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2021-03-13 00:09:39,484 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:39,485 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2021-03-13 00:09:39,549 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0018.fits
2021-03-13 00:09:39,589 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2021-03-13 00:09:39,628 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2021-03-13 00:09:39,629 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
2021-03-13 00:09:50,710 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 4
2021-03-13 00:09:50,712 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2021-03-13 00:09:50,719 - stpipe.Detector1Pipeline.ramp_fit - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/ramp_fit.py:1091: RuntimeWarning: divide by zero encountered in true_divide
var_p2 = 1/(s_inv_var_p3.sum(axis=0))
2021-03-13 00:09:50,821 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2021-03-13 00:09:50,919 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:50,920 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:50,961 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:09:50,961 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:09:50,963 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:09:51,036 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:51,037 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:09:51,083 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:09:51,084 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:09:51,085 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:09:51,086 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2021-03-13 00:09:51,087 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2021-03-13 00:09:51,095 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2021-03-13 00:09:51,204 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:51,205 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-03-13 00:09:51,370 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2021-03-13 00:09:51,389 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2021-03-13 00:09:51,390 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2021-03-13 00:09:51,391 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2021-03-13 00:09:51,392 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:09:51,581 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS1: [3, 4]
2021-03-13 00:09:51,582 - stpipe.AssignWcsStep - INFO - Computing WCS for 2 open slitlets
2021-03-13 00:09:51,594 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2021-03-13 00:09:51,595 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2021-03-13 00:09:51,596 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2021-03-13 00:09:51,597 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:09:51,604 - stpipe.AssignWcsStep - INFO - SPORDER= 0, wrange=[6e-07, 5.3e-06]
2021-03-13 00:09:51,692 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 1
2021-03-13 00:09:51,693 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 2
2021-03-13 00:09:51,693 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 3
2021-03-13 00:09:51,702 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 4
2021-03-13 00:09:51,712 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:09:51,813 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0034.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0028.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/V0030006000104_msa.fits'}
2021-03-13 00:09:51,938 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2021-03-13 00:09:51,941 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2021-03-13 00:09:51,948 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2021-03-13 00:09:52,037 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:09:52,038 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:09:52,053 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2021-03-13 00:09:52,054 - stpipe.JwstStep - INFO - JwstStep instance created.
2021-03-13 00:09:52,156 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2021-03-13 00:09:52,157 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2021-03-13 00:09:52,158 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2021-03-13 00:09:52,158 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:09:52,165 - stpipe.MSAFlagOpenStep - INFO - SPORDER= 0, wrange=[6e-07, 5.3e-06]
2021-03-13 00:09:52,254 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2021-03-13 00:09:52,294 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2021-03-13 00:09:52,319 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2021-03-13 00:09:52,394 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2021-03-13 00:09:52,420 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:09:54,417 - stpipe.MSAFlagOpenStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/geometry.py:203: RuntimeWarning: invalid value encountered in remainder
lon = np.mod(lon, 360.0 * u.deg if nquant else 360.0)
2021-03-13 00:10:02,237 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2021-03-13 00:10:02,246 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2021-03-13 00:10:02,386 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:10:02,387 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2021-03-13 00:10:02,403 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2021-03-13 00:10:02,550 - stpipe.Extract2dStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)
2021-03-13 00:10:02,551 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 3
2021-03-13 00:10:02,552 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1027 1464
2021-03-13 00:10:02,552 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1971 1983
2021-03-13 00:10:02,654 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:10:02,662 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.216281195 -45.702862740 156.216151591 -45.702738206 156.216089149 -45.702770462 156.216218751 -45.702894998
2021-03-13 00:10:02,662 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.216281195 -45.702862740 156.216151591 -45.702738206 156.216089149 -45.702770462 156.216218751 -45.702894998
2021-03-13 00:10:02,787 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 4
2021-03-13 00:10:02,788 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1275 1699
2021-03-13 00:10:02,788 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 32 43
2021-03-13 00:10:02,886 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:10:02,894 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.168120618 -45.657220874 156.167995139 -45.657100409 156.167933468 -45.657132147 156.168058946 -45.657252613
2021-03-13 00:10:02,895 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.168120618 -45.657220874 156.167995139 -45.657100409 156.167933468 -45.657132147 156.168058946 -45.657252613
2021-03-13 00:10:02,946 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2021-03-13 00:10:03,147 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2021-03-13 00:10:03,245 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:10:03,246 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:10:03,253 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2021-03-13 00:10:03,254 - stpipe.SourceTypeStep - INFO - source_id=3, stellarity=100.0000, type=POINT
2021-03-13 00:10:03,254 - stpipe.SourceTypeStep - INFO - source_id=4, stellarity=100.0000, type=POINT
2021-03-13 00:10:03,255 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2021-03-13 00:10:03,268 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2021-03-13 00:10:03,345 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:10:03,347 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-03-13 00:10:25,841 - stpipe.FlatFieldStep - INFO - Working on slit 3
2021-03-13 00:10:26,494 - stpipe.FlatFieldStep - INFO - Working on slit 4
2021-03-13 00:10:27,166 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2021-03-13 00:10:27,178 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2021-03-13 00:10:27,431 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:10:27,432 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:10:27,452 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2021-03-13 00:10:27,480 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2021-03-13 00:10:27,737 - stpipe.PathLossStep - INFO - Working on slit 0
2021-03-13 00:10:27,747 - stpipe.PathLossStep - INFO - Working on slit 1
2021-03-13 00:10:27,758 - stpipe.PathLossStep - INFO - Step PathLossStep done
2021-03-13 00:10:27,770 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2021-03-13 00:10:27,866 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_prism_nrs1_uncal.fits>,).
2021-03-13 00:10:27,867 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:10:27,886 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2021-03-13 00:10:28,166 - stpipe.BarShadowStep - INFO - Working on slitlet 3
2021-03-13 00:10:28,174 - stpipe.BarShadowStep - INFO - Bar shadow correction skipped for slitlet 3 (source not uniform)
2021-03-13 00:10:28,177 - stpipe.BarShadowStep - INFO - Working on slitlet 4
2021-03-13 00:10:28,184 - stpipe.BarShadowStep - INFO - Bar shadow correction skipped for slitlet 4 (source not uniform)
2021-03-13 00:10:28,187 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
Looping over open slitlets... Working with slitlet 3 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Did barshadow validation test passed? The test is skipped for POINT sources, since the correction is not applied Testing files for detector: nrs2 Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_prism_nrs2_uncal.fits
2021-03-13 00:10:29,068 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2021-03-13 00:10:29,069 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2021-03-13 00:10:29,070 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2021-03-13 00:10:29,071 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2021-03-13 00:10:29,072 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2021-03-13 00:10:29,073 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2021-03-13 00:10:29,074 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2021-03-13 00:10:29,076 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2021-03-13 00:10:29,077 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2021-03-13 00:10:29,078 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2021-03-13 00:10:29,079 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2021-03-13 00:10:29,080 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2021-03-13 00:10:29,081 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2021-03-13 00:10:29,082 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2021-03-13 00:10:29,083 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2021-03-13 00:10:29,084 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2021-03-13 00:10:29,085 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2021-03-13 00:10:29,202 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_prism_nrs2_uncal.fits' mode='rb' closefd=True>
gc.collect()
2021-03-13 00:10:29,206 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_prism_nrs2_uncal.fits',).
2021-03-13 00:10:29,215 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2021-03-13 00:10:29,298 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_prism_nrs2_uncal.fits' reftypes = ['dark', 'gain', 'ipc', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2021-03-13 00:10:29,314 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0087.fits'.
2021-03-13 00:10:29,319 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits'.
2021-03-13 00:10:29,322 - stpipe.Detector1Pipeline - INFO - Prefetch for IPC reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_ipc_0012.fits'.
2021-03-13 00:10:29,323 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits'.
2021-03-13 00:10:29,325 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0011.fits'.
2021-03-13 00:10:29,327 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2021-03-13 00:10:29,328 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0017.fits'.
2021-03-13 00:10:29,329 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_refpix_0020.fits'.
2021-03-13 00:10:29,332 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2021-03-13 00:10:29,332 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2021-03-13 00:10:29,332 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits'.
2021-03-13 00:10:29,336 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0114.fits'.
2021-03-13 00:10:29,338 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2021-03-13 00:10:29,339 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2021-03-13 00:10:29,339 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2021-03-13 00:10:29,633 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:29,635 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:29,762 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2021-03-13 00:10:29,762 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2021-03-13 00:10:29,763 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2021-03-13 00:10:29,866 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:29,868 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:29,884 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0011.fits
2021-03-13 00:10:30,233 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2021-03-13 00:10:30,339 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:30,340 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:30,357 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0021.fits
2021-03-13 00:10:30,954 - stpipe.Detector1Pipeline.saturation - INFO - Detected 5379 saturated pixels
2021-03-13 00:10:30,976 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2021-03-13 00:10:31,000 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2021-03-13 00:10:31,128 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:31,130 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:31,146 - stpipe.Detector1Pipeline.ipc - INFO - Using IPC reference file /grp/crds/cache/references/jwst/jwst_nirspec_ipc_0012.fits
2021-03-13 00:10:31,676 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2021-03-13 00:10:31,805 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:31,806 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:31,823 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0114.fits
2021-03-13 00:10:31,865 - stpipe.Detector1Pipeline.superbias - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stdatamodels/validate.py:34: ValidationWarning: While validating meta.exposure.readpatt the following error occurred:
'ALLIRS2' is not one of ['ACQ1', 'ACQ2', 'BRIGHT1', 'BRIGHT2', 'DEEP2', 'DEEP8', 'FAST', 'FASTGRPAVG', 'FASTGRPAVG8', 'FASTGRPAVG16', 'FASTGRPAVG32', 'FASTGRPAVG64', 'FASTR1', 'FASTR100', 'FGS', 'FGS60', 'FGS8370', 'FGS840', 'FGSRAPID', 'FINEGUIDE', 'ID', 'MEDIUM2', 'MEDIUM8', 'NIS', 'NISRAPID', 'NRS', 'NRSIRS2', 'NRSN16R4', 'NRSN32R8', 'NRSN8R2', 'NRSRAPID', 'NRSIRS2RAPID', 'NRSRAPIDD1', 'NRSRAPIDD2', 'NRSRAPIDD6', 'NRSSLOW', 'RAPID', 'SHALLOW2', 'SHALLOW4', 'SLOW', 'SLOWR1', 'TRACK', 'ANY', 'N/A']
Failed validating 'enum' in schema:
OrderedDict([('title', 'Readout pattern'),
('type', 'string'),
('enum',
['ACQ1',
'ACQ2',
'BRIGHT1',
'BRIGHT2',
'DEEP2',
'DEEP8',
'FAST',
'FASTGRPAVG',
'FASTGRPAVG8',
'FASTGRPAVG16',
'FASTGRPAVG32',
'FASTGRPAVG64',
'FASTR1',
'FASTR100',
'FGS',
'FGS60',
'FGS8370',
'FGS840',
'FGSRAPID',
'FINEGUIDE',
'ID',
'MEDIUM2',
'MEDIUM8',
'NIS',
'NISRAPID',
'NRS',
'NRSIRS2',
'NRSN16R4',
'NRSN32R8',
'NRSN8R2',
'NRSRAPID',
'NRSIRS2RAPID',
'NRSRAPIDD1',
'NRSRAPIDD2',
'NRSRAPIDD6',
'NRSSLOW',
'RAPID',
'SHALLOW2',
'SHALLOW4',
'SLOW',
'SLOWR1',
'TRACK',
'ANY',
'N/A']),
('fits_ke ...
warnings.warn(errmsg, ValidationWarning)
2021-03-13 00:10:32,222 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2021-03-13 00:10:32,347 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:32,349 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2021-03-13 00:10:32,365 - stpipe.Detector1Pipeline.refpix - INFO - Using refpix reference file: /grp/crds/cache/references/jwst/jwst_nirspec_refpix_0020.fits
2021-03-13 00:10:46,034 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2021-03-13 00:10:46,262 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:46,263 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:10:46,280 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0021.fits
2021-03-13 00:10:46,829 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2021-03-13 00:10:46,960 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:46,961 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'dark_output': None}
2021-03-13 00:10:46,977 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0087.fits
2021-03-13 00:10:50,371 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=4, nframes=1, groupgap=0
2021-03-13 00:10:50,371 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=65, nframes=1, groupgap=0
2021-03-13 00:10:50,766 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2021-03-13 00:10:51,278 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:51,279 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}
2021-03-13 00:10:51,287 - stpipe.Detector1Pipeline.jump - WARNING - Can not apply jump detection when NGROUPS<=4;
2021-03-13 00:10:51,288 - stpipe.Detector1Pipeline.jump - WARNING - Jump step will be skipped
2021-03-13 00:10:51,371 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2021-03-13 00:10:51,472 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 4, 3200, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:10:51,474 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2021-03-13 00:10:51,499 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0017.fits
2021-03-13 00:10:51,531 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2021-03-13 00:10:51,564 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2021-03-13 00:10:51,565 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
2021-03-13 00:11:02,266 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 4
2021-03-13 00:11:02,267 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2021-03-13 00:11:02,274 - stpipe.Detector1Pipeline.ramp_fit - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/ramp_fit.py:1091: RuntimeWarning: divide by zero encountered in true_divide
var_p2 = 1/(s_inv_var_p3.sum(axis=0))
2021-03-13 00:11:02,381 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2021-03-13 00:11:02,492 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:11:02,494 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:02,546 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:11:02,546 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:11:02,547 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:11:02,647 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:11:02,649 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:02,695 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:11:02,696 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:11:02,697 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:11:02,697 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2021-03-13 00:11:02,698 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2021-03-13 00:11:02,706 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2021-03-13 00:11:02,814 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_prism_nrs2_uncal.fits>,).
2021-03-13 00:11:02,816 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-03-13 00:11:02,939 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2021-03-13 00:11:02,954 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.0332140289247036 deg
2021-03-13 00:11:02,955 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3367482721805573 deg
2021-03-13 00:11:02,955 - stpipe.AssignWcsStep - INFO - theta_y correction: -1.0907214098475986e-05 deg
2021-03-13 00:11:02,956 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:11:03,095 - stpipe.AssignWcsStep - INFO - Removing slit 3 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:03,133 - stpipe.AssignWcsStep - INFO - Removing slit 4 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:03,134 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS2: []
2021-03-13 00:11:03,134 - stpipe.AssignWcsStep - CRITICAL - No open slits fall on detector NRS2.
No open slits fall on detector nrs2 Testing files for detector: nrs1 Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS1_uncal.fits
2021-03-13 00:11:03,836 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2021-03-13 00:11:03,837 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2021-03-13 00:11:03,838 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2021-03-13 00:11:03,839 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2021-03-13 00:11:03,840 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2021-03-13 00:11:03,841 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2021-03-13 00:11:03,842 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2021-03-13 00:11:03,843 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2021-03-13 00:11:03,844 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2021-03-13 00:11:03,845 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2021-03-13 00:11:03,846 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2021-03-13 00:11:03,847 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2021-03-13 00:11:03,848 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2021-03-13 00:11:03,849 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2021-03-13 00:11:03,850 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2021-03-13 00:11:03,851 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2021-03-13 00:11:03,852 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2021-03-13 00:11:03,969 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS1_uncal.fits' mode='rb' closefd=True>
gc.collect()
2021-03-13 00:11:03,976 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS1_uncal.fits',).
2021-03-13 00:11:03,985 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2021-03-13 00:11:04,060 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_g140m_line1_NRS1_uncal.fits' reftypes = ['dark', 'gain', 'ipc', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2021-03-13 00:11:04,073 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits'.
2021-03-13 00:11:04,074 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits'.
2021-03-13 00:11:04,075 - stpipe.Detector1Pipeline - INFO - Prefetch for IPC reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_ipc_0011.fits'.
2021-03-13 00:11:04,076 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0019.fits'.
2021-03-13 00:11:04,077 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits'.
2021-03-13 00:11:04,078 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2021-03-13 00:11:04,078 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits'.
2021-03-13 00:11:04,079 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2021-03-13 00:11:04,080 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2021-03-13 00:11:04,080 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2021-03-13 00:11:04,080 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0023.fits'.
2021-03-13 00:11:04,081 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits'.
2021-03-13 00:11:04,082 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2021-03-13 00:11:04,083 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2021-03-13 00:11:04,083 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2021-03-13 00:11:04,379 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:04,380 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:04,501 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2021-03-13 00:11:04,501 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2021-03-13 00:11:04,502 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2021-03-13 00:11:04,602 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:04,603 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:04,619 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0024.fits
2021-03-13 00:11:04,902 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2021-03-13 00:11:05,006 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:05,007 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:05,023 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0023.fits
2021-03-13 00:11:06,083 - stpipe.Detector1Pipeline.saturation - INFO - Detected 58922 saturated pixels
2021-03-13 00:11:06,103 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2021-03-13 00:11:06,110 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2021-03-13 00:11:06,212 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:06,214 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:06,229 - stpipe.Detector1Pipeline.ipc - INFO - Using IPC reference file /grp/crds/cache/references/jwst/jwst_nirspec_ipc_0011.fits
2021-03-13 00:11:06,728 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2021-03-13 00:11:06,831 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:06,832 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:06,848 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0087.fits
2021-03-13 00:11:09,019 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2021-03-13 00:11:09,122 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:09,124 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2021-03-13 00:11:09,131 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2021-03-13 00:11:09,131 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2021-03-13 00:11:09,132 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2021-03-13 00:11:09,132 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
2021-03-13 00:11:09,132 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
2021-03-13 00:11:12,746 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2021-03-13 00:11:12,849 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:12,851 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:12,867 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0019.fits
2021-03-13 00:11:17,175 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2021-03-13 00:11:17,285 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:17,286 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'dark_output': None}
2021-03-13 00:11:17,302 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0140.fits
2021-03-13 00:11:21,433 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=6, nframes=1, groupgap=0
2021-03-13 00:11:21,434 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2021-03-13 00:11:21,609 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2021-03-13 00:11:21,725 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:21,727 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}
2021-03-13 00:11:21,734 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2021-03-13 00:11:21,743 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2021-03-13 00:11:21,778 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2021-03-13 00:11:22,649 - stpipe.Detector1Pipeline.jump - INFO - Found 32 possible cores to use for jump detection
2021-03-13 00:11:22,801 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2021-03-13 00:11:23,030 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2021-03-13 00:11:24,563 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 72408 pixels with at least one CR
2021-03-13 00:11:27,441 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 4.63949 sec
2021-03-13 00:11:27,443 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 5.708970
2021-03-13 00:11:27,444 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2021-03-13 00:11:27,553 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:27,555 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2021-03-13 00:11:27,582 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0019.fits
2021-03-13 00:11:27,609 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0019.fits
2021-03-13 00:11:27,636 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2021-03-13 00:11:27,637 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
2021-03-13 00:11:50,724 - stpipe.Detector1Pipeline.ramp_fit - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/ramp_fit.py:872: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int,:,:,:] *= ( segs_4[num_int,:,:,:] > 0)
2021-03-13 00:11:51,424 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 6
2021-03-13 00:11:51,424 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2021-03-13 00:11:51,551 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2021-03-13 00:11:51,677 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:51,679 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:51,720 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:11:51,720 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:11:51,721 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:11:51,819 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:51,821 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:11:51,865 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:11:51,865 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:11:51,866 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:11:51,867 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2021-03-13 00:11:51,868 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2021-03-13 00:11:51,876 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2021-03-13 00:11:51,981 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:51,982 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-03-13 00:11:52,127 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2021-03-13 00:11:52,340 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:11:52,340 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:11:52,341 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:11:52,341 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:11:52,455 - stpipe.AssignWcsStep - INFO - Removing slit 6 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,468 - stpipe.AssignWcsStep - INFO - Removing slit 7 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,481 - stpipe.AssignWcsStep - INFO - Removing slit 8 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,493 - stpipe.AssignWcsStep - INFO - Removing slit 9 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,506 - stpipe.AssignWcsStep - INFO - Removing slit 10 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,519 - stpipe.AssignWcsStep - INFO - Removing slit 11 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,532 - stpipe.AssignWcsStep - INFO - Removing slit 14 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,545 - stpipe.AssignWcsStep - INFO - Removing slit 15 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,557 - stpipe.AssignWcsStep - INFO - Removing slit 16 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,570 - stpipe.AssignWcsStep - INFO - Removing slit 17 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,583 - stpipe.AssignWcsStep - INFO - Removing slit 18 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,596 - stpipe.AssignWcsStep - INFO - Removing slit 19 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,609 - stpipe.AssignWcsStep - INFO - Removing slit 21 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,621 - stpipe.AssignWcsStep - INFO - Removing slit 25 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,634 - stpipe.AssignWcsStep - INFO - Removing slit 26 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,647 - stpipe.AssignWcsStep - INFO - Removing slit 27 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,660 - stpipe.AssignWcsStep - INFO - Removing slit 29 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,672 - stpipe.AssignWcsStep - INFO - Removing slit 31 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,685 - stpipe.AssignWcsStep - INFO - Removing slit 32 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,698 - stpipe.AssignWcsStep - INFO - Removing slit 33 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,711 - stpipe.AssignWcsStep - INFO - Removing slit 35 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,723 - stpipe.AssignWcsStep - INFO - Removing slit 37 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,736 - stpipe.AssignWcsStep - INFO - Removing slit 38 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,749 - stpipe.AssignWcsStep - INFO - Removing slit 39 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,762 - stpipe.AssignWcsStep - INFO - Removing slit 41 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,813 - stpipe.AssignWcsStep - INFO - Removing slit 1 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,826 - stpipe.AssignWcsStep - INFO - Removing slit 2 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,839 - stpipe.AssignWcsStep - INFO - Removing slit 3 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,852 - stpipe.AssignWcsStep - INFO - Removing slit 4 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,864 - stpipe.AssignWcsStep - INFO - Removing slit 5 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,881 - stpipe.AssignWcsStep - INFO - Removing slit 12 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,894 - stpipe.AssignWcsStep - INFO - Removing slit 13 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,907 - stpipe.AssignWcsStep - INFO - Removing slit 20 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,919 - stpipe.AssignWcsStep - INFO - Removing slit 22 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,932 - stpipe.AssignWcsStep - INFO - Removing slit 23 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,945 - stpipe.AssignWcsStep - INFO - Removing slit 24 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,959 - stpipe.AssignWcsStep - INFO - Removing slit 28 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,971 - stpipe.AssignWcsStep - INFO - Removing slit 30 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,984 - stpipe.AssignWcsStep - INFO - Removing slit 34 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:52,997 - stpipe.AssignWcsStep - INFO - Removing slit 36 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:53,010 - stpipe.AssignWcsStep - INFO - Removing slit 40 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:11:53,346 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS1: [42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68]
2021-03-13 00:11:53,346 - stpipe.AssignWcsStep - INFO - Computing WCS for 27 open slitlets
2021-03-13 00:11:53,357 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:11:53,358 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:11:53,358 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:11:53,359 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:11:53,368 - stpipe.AssignWcsStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2021-03-13 00:11:53,460 - stpipe.AssignWcsStep - INFO - There are 2 open slits in quadrant 1
2021-03-13 00:11:53,477 - stpipe.AssignWcsStep - INFO - There are 11 open slits in quadrant 2
2021-03-13 00:11:53,567 - stpipe.AssignWcsStep - INFO - There are 4 open slits in quadrant 3
2021-03-13 00:11:53,600 - stpipe.AssignWcsStep - INFO - There are 10 open slits in quadrant 4
2021-03-13 00:11:53,684 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:11:53,922 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0032.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0023.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': 'V8460001000101_msa.fits'}
2021-03-13 00:11:54,303 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2021-03-13 00:11:54,306 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2021-03-13 00:11:54,314 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2021-03-13 00:11:54,458 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:11:54,460 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:11:54,475 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2021-03-13 00:11:54,476 - stpipe.JwstStep - INFO - JwstStep instance created.
2021-03-13 00:11:54,571 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:11:54,572 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:11:54,573 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:11:54,573 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:11:54,580 - stpipe.MSAFlagOpenStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2021-03-13 00:11:54,670 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2021-03-13 00:11:54,712 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2021-03-13 00:11:54,737 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2021-03-13 00:11:54,811 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2021-03-13 00:11:54,836 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:11:57,179 - stpipe.MSAFlagOpenStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/geometry.py:203: RuntimeWarning: invalid value encountered in remainder
lon = np.mod(lon, 360.0 * u.deg if nquant else 360.0)
2021-03-13 00:12:05,082 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2021-03-13 00:12:05,090 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2021-03-13 00:12:05,328 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:12:05,329 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2021-03-13 00:12:05,345 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2021-03-13 00:12:05,777 - stpipe.Extract2dStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)
2021-03-13 00:12:05,779 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 53
2021-03-13 00:12:05,779 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1542 2048
2021-03-13 00:12:05,779 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1315 1329
2021-03-13 00:12:05,879 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:05,887 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2021-03-13 00:12:05,887 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2021-03-13 00:12:06,448 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 54
2021-03-13 00:12:06,449 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1542 2048
2021-03-13 00:12:06,449 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1305 1319
2021-03-13 00:12:06,549 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:06,557 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2021-03-13 00:12:06,557 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2021-03-13 00:12:07,135 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 42
2021-03-13 00:12:07,135 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 2018 2048
2021-03-13 00:12:07,136 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 545 562
2021-03-13 00:12:07,231 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:07,240 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2021-03-13 00:12:07,240 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2021-03-13 00:12:07,822 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 43
2021-03-13 00:12:07,823 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1970 2048
2021-03-13 00:12:07,823 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 414 430
2021-03-13 00:12:07,918 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:07,925 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2021-03-13 00:12:07,926 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2021-03-13 00:12:08,343 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 44
2021-03-13 00:12:08,343 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1969 2048
2021-03-13 00:12:08,343 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 404 420
2021-03-13 00:12:08,611 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:08,620 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2021-03-13 00:12:08,620 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2021-03-13 00:12:09,040 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 45
2021-03-13 00:12:09,040 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1908 2048
2021-03-13 00:12:09,041 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 530 546
2021-03-13 00:12:09,136 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:09,143 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2021-03-13 00:12:09,144 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2021-03-13 00:12:09,732 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 46
2021-03-13 00:12:09,733 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1882 2048
2021-03-13 00:12:09,733 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 202 218
2021-03-13 00:12:09,828 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:09,835 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2021-03-13 00:12:09,835 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2021-03-13 00:12:10,425 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 47
2021-03-13 00:12:10,425 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1815 2048
2021-03-13 00:12:10,425 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 566 581
2021-03-13 00:12:10,522 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:10,529 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2021-03-13 00:12:10,530 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2021-03-13 00:12:10,947 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 48
2021-03-13 00:12:10,948 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1815 2048
2021-03-13 00:12:10,948 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 561 576
2021-03-13 00:12:11,045 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:11,052 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2021-03-13 00:12:11,052 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2021-03-13 00:12:11,669 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 49
2021-03-13 00:12:11,669 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1791 2048
2021-03-13 00:12:11,670 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 631 646
2021-03-13 00:12:11,771 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:11,778 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2021-03-13 00:12:11,779 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2021-03-13 00:12:12,386 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 50
2021-03-13 00:12:12,387 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1774 2048
2021-03-13 00:12:12,387 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 238 253
2021-03-13 00:12:12,483 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:12,491 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2021-03-13 00:12:12,491 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2021-03-13 00:12:12,906 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 51
2021-03-13 00:12:12,906 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1759 2048
2021-03-13 00:12:12,907 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 430 445
2021-03-13 00:12:13,004 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:13,011 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2021-03-13 00:12:13,012 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2021-03-13 00:12:13,647 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 52
2021-03-13 00:12:13,647 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1722 2048
2021-03-13 00:12:13,648 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 803 817
2021-03-13 00:12:13,744 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:13,752 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2021-03-13 00:12:13,752 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2021-03-13 00:12:14,172 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 55
2021-03-13 00:12:14,172 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 1022 2048
2021-03-13 00:12:14,173 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1415 1430
2021-03-13 00:12:14,275 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:14,282 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2021-03-13 00:12:14,283 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2021-03-13 00:12:14,908 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 65
2021-03-13 00:12:14,908 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 427 1893
2021-03-13 00:12:14,909 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1251 1273
2021-03-13 00:12:15,022 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:15,029 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.187669449 -45.691221095 156.187541886 -45.691097893 156.187479754 -45.691130071 156.187607315 -45.691253274
2021-03-13 00:12:15,030 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.187669449 -45.691221095 156.187541886 -45.691097893 156.187479754 -45.691130071 156.187607315 -45.691253274
2021-03-13 00:12:15,654 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 66
2021-03-13 00:12:15,654 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 426 1892
2021-03-13 00:12:15,655 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1452 1474
2021-03-13 00:12:15,768 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:15,776 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.192290190 -45.696194513 156.192162195 -45.696070854 156.192099979 -45.696103094 156.192227972 -45.696226755
2021-03-13 00:12:15,776 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.192290190 -45.696194513 156.192162195 -45.696070854 156.192099979 -45.696103094 156.192227972 -45.696226755
2021-03-13 00:12:16,196 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 68
2021-03-13 00:12:16,197 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 375 1842
2021-03-13 00:12:16,197 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1476 1499
2021-03-13 00:12:16,312 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:16,319 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191192483 -45.697686513 156.191064493 -45.697562756 156.191002259 -45.697595026 156.191130247 -45.697718784
2021-03-13 00:12:16,320 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191192483 -45.697686513 156.191064493 -45.697562756 156.191002259 -45.697595026 156.191130247 -45.697718784
2021-03-13 00:12:16,968 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 56
2021-03-13 00:12:16,969 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 872 2048
2021-03-13 00:12:16,969 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 768 783
2021-03-13 00:12:17,073 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:17,080 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2021-03-13 00:12:17,080 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2021-03-13 00:12:17,504 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 57
2021-03-13 00:12:17,505 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 805 2048
2021-03-13 00:12:17,505 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 354 370
2021-03-13 00:12:17,609 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:17,617 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2021-03-13 00:12:17,617 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2021-03-13 00:12:18,267 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 58
2021-03-13 00:12:18,268 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 731 2048
2021-03-13 00:12:18,268 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 258 274
2021-03-13 00:12:18,374 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:18,382 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.174716949 -45.661919476 156.174591057 -45.661798624 156.174529324 -45.661830406 156.174655215 -45.661951259
2021-03-13 00:12:18,382 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.174716949 -45.661919476 156.174591057 -45.661798624 156.174529324 -45.661830406 156.174655215 -45.661951259
2021-03-13 00:12:18,804 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 59
2021-03-13 00:12:18,804 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 658 2048
2021-03-13 00:12:18,805 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 71 88
2021-03-13 00:12:18,911 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:18,919 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.167987333 -45.658726530 156.167861814 -45.658605973 156.167800128 -45.658637729 156.167925645 -45.658758288
2021-03-13 00:12:18,919 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.167987333 -45.658726530 156.167861814 -45.658605973 156.167800128 -45.658637729 156.167925645 -45.658758288
2021-03-13 00:12:19,571 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 60
2021-03-13 00:12:19,572 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 641 2048
2021-03-13 00:12:19,572 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 681 699
2021-03-13 00:12:19,680 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:19,688 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.181507045 -45.673611447 156.181380443 -45.673489678 156.181318559 -45.673521602 156.181445158 -45.673643373
2021-03-13 00:12:19,688 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.181507045 -45.673611447 156.181380443 -45.673489678 156.181318559 -45.673521602 156.181445158 -45.673643373
2021-03-13 00:12:20,111 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 61
2021-03-13 00:12:20,112 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 620 2048
2021-03-13 00:12:20,112 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 822 840
2021-03-13 00:12:20,219 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:20,227 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.184095390 -45.677365774 156.183968526 -45.677243686 156.183906587 -45.677275659 156.184033450 -45.677397747
2021-03-13 00:12:20,227 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.184095390 -45.677365774 156.183968526 -45.677243686 156.183906587 -45.677275659 156.184033450 -45.677397747
2021-03-13 00:12:20,880 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 62
2021-03-13 00:12:20,881 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 570 2032
2021-03-13 00:12:20,881 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 510 528
2021-03-13 00:12:20,989 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:20,997 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.175200333 -45.670700849 156.175074128 -45.670579384 156.175012293 -45.670611285 156.175138497 -45.670732752
2021-03-13 00:12:20,997 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.175200333 -45.670700849 156.175074128 -45.670579384 156.175012293 -45.670611285 156.175138497 -45.670732752
2021-03-13 00:12:21,415 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 63
2021-03-13 00:12:21,416 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 454 1915
2021-03-13 00:12:21,416 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 181 200
2021-03-13 00:12:21,526 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:21,533 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.163846800 -45.664818400 156.163721256 -45.664697497 156.163659498 -45.664729348 156.163785040 -45.664850252
2021-03-13 00:12:21,534 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.163846800 -45.664818400 156.163721256 -45.664697497 156.163659498 -45.664729348 156.163785040 -45.664850252
2021-03-13 00:12:22,190 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 64
2021-03-13 00:12:22,190 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 454 1915
2021-03-13 00:12:22,190 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 176 195
2021-03-13 00:12:22,299 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:22,306 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.163724974 -45.664701077 156.163599439 -45.664580184 156.163537682 -45.664612033 156.163663216 -45.664732928
2021-03-13 00:12:22,307 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.163724974 -45.664701077 156.163599439 -45.664580184 156.163537682 -45.664612033 156.163663216 -45.664732928
2021-03-13 00:12:22,721 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 67
2021-03-13 00:12:22,722 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 328 1789
2021-03-13 00:12:22,722 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 130 150
2021-03-13 00:12:23,072 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:12:23,080 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.158533940 -45.665758025 156.158408563 -45.665637125 156.158346784 -45.665669007 156.158472159 -45.665789909
2021-03-13 00:12:23,080 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.158533940 -45.665758025 156.158408563 -45.665637125 156.158346784 -45.665669007 156.158472159 -45.665789909
2021-03-13 00:12:23,781 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2021-03-13 00:12:26,199 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2021-03-13 00:12:26,416 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:12:26,418 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:12:26,424 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2021-03-13 00:12:26,425 - stpipe.SourceTypeStep - INFO - source_id=53, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,426 - stpipe.SourceTypeStep - INFO - source_id=54, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,426 - stpipe.SourceTypeStep - INFO - source_id=42, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,427 - stpipe.SourceTypeStep - INFO - source_id=43, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,427 - stpipe.SourceTypeStep - INFO - source_id=44, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,428 - stpipe.SourceTypeStep - INFO - source_id=45, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,428 - stpipe.SourceTypeStep - INFO - source_id=46, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,429 - stpipe.SourceTypeStep - INFO - source_id=47, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,429 - stpipe.SourceTypeStep - INFO - source_id=48, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,430 - stpipe.SourceTypeStep - INFO - source_id=49, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,430 - stpipe.SourceTypeStep - INFO - source_id=50, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,431 - stpipe.SourceTypeStep - INFO - source_id=51, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,431 - stpipe.SourceTypeStep - INFO - source_id=52, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,432 - stpipe.SourceTypeStep - INFO - source_id=55, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,432 - stpipe.SourceTypeStep - INFO - source_id=65, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,432 - stpipe.SourceTypeStep - INFO - source_id=66, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,433 - stpipe.SourceTypeStep - INFO - source_id=68, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,433 - stpipe.SourceTypeStep - INFO - source_id=56, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,434 - stpipe.SourceTypeStep - INFO - source_id=57, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,434 - stpipe.SourceTypeStep - INFO - source_id=58, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,435 - stpipe.SourceTypeStep - INFO - source_id=59, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,435 - stpipe.SourceTypeStep - INFO - source_id=60, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,436 - stpipe.SourceTypeStep - INFO - source_id=61, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,436 - stpipe.SourceTypeStep - INFO - source_id=62, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,436 - stpipe.SourceTypeStep - INFO - source_id=63, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,437 - stpipe.SourceTypeStep - INFO - source_id=64, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,437 - stpipe.SourceTypeStep - INFO - source_id=67, stellarity=0.0000, type=EXTENDED
2021-03-13 00:12:26,438 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2021-03-13 00:12:26,501 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2021-03-13 00:12:26,698 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:12:26,700 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-03-13 00:12:49,097 - stpipe.FlatFieldStep - INFO - Working on slit 53
2021-03-13 00:12:49,812 - stpipe.FlatFieldStep - INFO - Working on slit 54
2021-03-13 00:12:50,510 - stpipe.FlatFieldStep - INFO - Working on slit 42
2021-03-13 00:12:50,616 - stpipe.FlatFieldStep - INFO - Working on slit 43
2021-03-13 00:12:50,781 - stpipe.FlatFieldStep - INFO - Working on slit 44
2021-03-13 00:12:50,946 - stpipe.FlatFieldStep - INFO - Working on slit 45
2021-03-13 00:12:51,184 - stpipe.FlatFieldStep - INFO - Working on slit 46
2021-03-13 00:12:51,488 - stpipe.FlatFieldStep - INFO - Working on slit 47
2021-03-13 00:12:51,839 - stpipe.FlatFieldStep - INFO - Working on slit 48
2021-03-13 00:12:52,190 - stpipe.FlatFieldStep - INFO - Working on slit 49
2021-03-13 00:12:52,584 - stpipe.FlatFieldStep - INFO - Working on slit 50
2021-03-13 00:12:53,000 - stpipe.FlatFieldStep - INFO - Working on slit 51
2021-03-13 00:12:53,423 - stpipe.FlatFieldStep - INFO - Working on slit 52
2021-03-13 00:12:53,887 - stpipe.FlatFieldStep - INFO - Working on slit 55
2021-03-13 00:12:55,259 - stpipe.FlatFieldStep - INFO - Working on slit 65
2021-03-13 00:12:57,217 - stpipe.FlatFieldStep - INFO - Working on slit 66
2021-03-13 00:12:59,198 - stpipe.FlatFieldStep - INFO - Working on slit 68
2021-03-13 00:13:01,151 - stpipe.FlatFieldStep - INFO - Working on slit 56
2021-03-13 00:13:02,680 - stpipe.FlatFieldStep - INFO - Working on slit 57
2021-03-13 00:13:04,345 - stpipe.FlatFieldStep - INFO - Working on slit 58
2021-03-13 00:13:06,120 - stpipe.FlatFieldStep - INFO - Working on slit 59
2021-03-13 00:13:07,962 - stpipe.FlatFieldStep - INFO - Working on slit 60
2021-03-13 00:13:09,851 - stpipe.FlatFieldStep - INFO - Working on slit 61
2021-03-13 00:13:11,766 - stpipe.FlatFieldStep - INFO - Working on slit 62
2021-03-13 00:13:13,583 - stpipe.FlatFieldStep - INFO - Working on slit 63
2021-03-13 00:13:15,430 - stpipe.FlatFieldStep - INFO - Working on slit 64
2021-03-13 00:13:17,370 - stpipe.FlatFieldStep - INFO - Working on slit 67
2021-03-13 00:13:20,267 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2021-03-13 00:13:20,318 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2021-03-13 00:13:20,783 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:13:20,786 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:13:20,844 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2021-03-13 00:13:20,870 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2021-03-13 00:13:24,233 - stpipe.PathLossStep - INFO - Working on slit 0
2021-03-13 00:13:24,244 - stpipe.PathLossStep - INFO - Working on slit 1
2021-03-13 00:13:24,255 - stpipe.PathLossStep - INFO - Working on slit 2
2021-03-13 00:13:24,265 - stpipe.PathLossStep - INFO - Working on slit 3
2021-03-13 00:13:24,275 - stpipe.PathLossStep - INFO - Working on slit 4
2021-03-13 00:13:24,285 - stpipe.PathLossStep - INFO - Working on slit 5
2021-03-13 00:13:24,296 - stpipe.PathLossStep - INFO - Working on slit 6
2021-03-13 00:13:24,306 - stpipe.PathLossStep - INFO - Working on slit 7
2021-03-13 00:13:24,316 - stpipe.PathLossStep - INFO - Working on slit 8
2021-03-13 00:13:24,326 - stpipe.PathLossStep - INFO - Working on slit 9
2021-03-13 00:13:24,337 - stpipe.PathLossStep - INFO - Working on slit 10
2021-03-13 00:13:24,347 - stpipe.PathLossStep - INFO - Working on slit 11
2021-03-13 00:13:24,357 - stpipe.PathLossStep - INFO - Working on slit 12
2021-03-13 00:13:24,368 - stpipe.PathLossStep - INFO - Working on slit 13
2021-03-13 00:13:24,379 - stpipe.PathLossStep - INFO - Working on slit 14
2021-03-13 00:13:24,391 - stpipe.PathLossStep - INFO - Working on slit 15
2021-03-13 00:13:24,403 - stpipe.PathLossStep - INFO - Working on slit 16
2021-03-13 00:13:24,414 - stpipe.PathLossStep - INFO - Working on slit 17
2021-03-13 00:13:24,426 - stpipe.PathLossStep - INFO - Working on slit 18
2021-03-13 00:13:24,437 - stpipe.PathLossStep - INFO - Working on slit 19
2021-03-13 00:13:24,448 - stpipe.PathLossStep - INFO - Working on slit 20
2021-03-13 00:13:24,460 - stpipe.PathLossStep - INFO - Working on slit 21
2021-03-13 00:13:24,473 - stpipe.PathLossStep - INFO - Working on slit 22
2021-03-13 00:13:24,484 - stpipe.PathLossStep - INFO - Working on slit 23
2021-03-13 00:13:24,496 - stpipe.PathLossStep - INFO - Working on slit 24
2021-03-13 00:13:24,508 - stpipe.PathLossStep - INFO - Working on slit 25
2021-03-13 00:13:24,521 - stpipe.PathLossStep - INFO - Working on slit 26
2021-03-13 00:13:24,534 - stpipe.PathLossStep - INFO - Step PathLossStep done
2021-03-13 00:13:24,584 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2021-03-13 00:13:24,902 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_g140m_line1_NRS1_uncal.fits>,).
2021-03-13 00:13:24,903 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:13:24,961 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2021-03-13 00:13:28,245 - stpipe.BarShadowStep - INFO - Working on slitlet 53
2021-03-13 00:13:28,284 - stpipe.BarShadowStep - INFO - Working on slitlet 54
2021-03-13 00:13:28,323 - stpipe.BarShadowStep - INFO - Working on slitlet 42
2021-03-13 00:13:28,339 - stpipe.BarShadowStep - INFO - Working on slitlet 43
2021-03-13 00:13:28,358 - stpipe.BarShadowStep - INFO - Working on slitlet 44
2021-03-13 00:13:28,377 - stpipe.BarShadowStep - INFO - Working on slitlet 45
2021-03-13 00:13:28,399 - stpipe.BarShadowStep - INFO - Working on slitlet 46
2021-03-13 00:13:28,422 - stpipe.BarShadowStep - INFO - Working on slitlet 47
2021-03-13 00:13:28,449 - stpipe.BarShadowStep - INFO - Working on slitlet 48
2021-03-13 00:13:28,475 - stpipe.BarShadowStep - INFO - Working on slitlet 49
2021-03-13 00:13:28,502 - stpipe.BarShadowStep - INFO - Working on slitlet 50
2021-03-13 00:13:28,531 - stpipe.BarShadowStep - INFO - Working on slitlet 51
2021-03-13 00:13:28,559 - stpipe.BarShadowStep - INFO - Working on slitlet 52
2021-03-13 00:13:28,589 - stpipe.BarShadowStep - INFO - Working on slitlet 55
2021-03-13 00:13:28,652 - stpipe.BarShadowStep - INFO - Working on slitlet 65
2021-03-13 00:13:28,755 - stpipe.BarShadowStep - INFO - Working on slitlet 66
2021-03-13 00:13:28,856 - stpipe.BarShadowStep - INFO - Working on slitlet 68
2021-03-13 00:13:28,963 - stpipe.BarShadowStep - INFO - Working on slitlet 56
2021-03-13 00:13:29,032 - stpipe.BarShadowStep - INFO - Working on slitlet 57
2021-03-13 00:13:29,107 - stpipe.BarShadowStep - INFO - Working on slitlet 58
2021-03-13 00:13:29,187 - stpipe.BarShadowStep - INFO - Working on slitlet 59
2021-03-13 00:13:29,272 - stpipe.BarShadowStep - INFO - Working on slitlet 60
2021-03-13 00:13:29,360 - stpipe.BarShadowStep - INFO - Working on slitlet 61
2021-03-13 00:13:29,451 - stpipe.BarShadowStep - INFO - Working on slitlet 62
2021-03-13 00:13:29,541 - stpipe.BarShadowStep - INFO - Working on slitlet 63
2021-03-13 00:13:29,635 - stpipe.BarShadowStep - INFO - Working on slitlet 64
2021-03-13 00:13:29,730 - stpipe.BarShadowStep - INFO - Working on slitlet 67
2021-03-13 00:13:29,827 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
2021-03-13 00:13:29,893 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice.
return _methods._mean(a, axis=axis, dtype=dtype,
2021-03-13 00:13:29,894 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide
ret = um.true_divide(
Looping over open slitlets... Working with slitlet 53 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
2021-03-13 00:13:32,089 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:32,089 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:32,150 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:32,151 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.195e-03 median = -3.540e-05 stdev = 6.063e-03
Maximum Relativebarshadow_correction = 5.761e-04
Minimum Relativebarshadow_correction = -2.816e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 13%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 53? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 54
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:33,877 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:33,878 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:33,938 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:33,939 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:33,940 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:33,941 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.141e-03 median = -4.434e-05 stdev = 5.973e-03
Maximum Relativebarshadow_correction = 4.518e-04
Minimum Relativebarshadow_correction = -2.811e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 12%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 54? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 42
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:35,594 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:35,595 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:35,596 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:35,596 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:35,656 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:35,657 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:35,658 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:35,658 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -1.941e-03 median = -4.132e-06 stdev = 3.797e-03
Maximum Relativebarshadow_correction = 1.723e-04
Minimum Relativebarshadow_correction = -9.762e-03
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 42? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 43
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:37,315 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:37,315 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:37,316 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:37,317 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:37,377 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:37,377 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:37,378 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:37,378 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.452e-03 median = -1.345e-04 stdev = 4.581e-03
Maximum Relativebarshadow_correction = 2.783e-05
Minimum Relativebarshadow_correction = -1.190e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 43? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 44
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:39,038 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:39,038 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:39,039 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:39,039 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:39,099 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:39,100 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:39,101 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:39,101 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.153e-03 median = -1.298e-05 stdev = 4.213e-03
Maximum Relativebarshadow_correction = 3.550e-04
Minimum Relativebarshadow_correction = -1.099e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 44? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 45
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:40,783 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:40,783 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:40,784 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:40,785 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -4.093e-03 median = -2.808e-05 stdev = 6.837e-03
Maximum Relativebarshadow_correction = 2.014e-04
Minimum Relativebarshadow_correction = -2.027e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 34%
-> 3xtheshold = 20%
-> 5xtheshold = 20%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 45? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 46
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
2021-03-13 00:13:41,371 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:41,372 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:41,373 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:41,373 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
2021-03-13 00:13:43,049 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:43,049 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:43,051 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:43,051 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:43,111 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:43,111 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:43,112 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:43,113 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -4.412e-03 median = -4.677e-05 stdev = 7.847e-03
Maximum Relativebarshadow_correction = 8.356e-04
Minimum Relativebarshadow_correction = -2.599e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 33%
-> 3xtheshold = 17%
-> 5xtheshold = 17%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 46? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 47
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:44,657 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:44,657 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:44,659 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:44,659 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:44,720 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:44,721 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:44,722 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:44,722 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.541e-03 median = -3.473e-05 stdev = 4.773e-03
Maximum Relativebarshadow_correction = 3.042e-04
Minimum Relativebarshadow_correction = -1.535e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 6%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 47? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 48
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:46,271 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:46,272 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:46,273 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:46,273 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:46,334 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:46,335 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:46,336 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:46,336 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.390e-03 median = -3.040e-05 stdev = 4.545e-03
Maximum Relativebarshadow_correction = 3.286e-04
Minimum Relativebarshadow_correction = -1.392e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 4%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 48? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 49
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:47,856 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:47,856 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:47,857 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:47,858 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:47,918 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:47,918 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:47,919 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:47,920 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.906e-03 median = -7.570e-05 stdev = 6.372e-03
Maximum Relativebarshadow_correction = 4.926e-04
Minimum Relativebarshadow_correction = -2.797e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 14%
-> 5xtheshold = 5%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 49? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 50
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:49,449 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:49,449 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:49,450 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:49,451 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:49,511 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:49,511 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:49,512 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:49,513 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.709e-03 median = -5.759e-05 stdev = 6.547e-03
Maximum Relativebarshadow_correction = 4.152e-04
Minimum Relativebarshadow_correction = -2.450e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 27%
-> 3xtheshold = 19%
-> 5xtheshold = 19%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 50? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 51
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:51,557 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:51,558 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:51,559 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:51,559 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:51,620 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:51,620 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:51,621 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:51,622 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.173e-03 median = -4.135e-05 stdev = 5.743e-03
Maximum Relativebarshadow_correction = 3.422e-04
Minimum Relativebarshadow_correction = -2.122e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 20%
-> 5xtheshold = 12%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 51? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 52
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:53,156 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:53,156 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:53,157 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:53,158 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:13:53,219 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:53,220 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.786e-03 median = -2.736e-05 stdev = 5.242e-03
Maximum Relativebarshadow_correction = 3.349e-04
Minimum Relativebarshadow_correction = -2.091e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 22%
-> 3xtheshold = 20%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 52? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 55
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:13:54,815 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:13:54,816 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.847e-03 median = -4.987e-05 stdev = 5.629e-03
Maximum Relativebarshadow_correction = 8.210e-04
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 55? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 65
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.953e-03 median = -6.132e-05 stdev = 5.815e-03
Maximum Relativebarshadow_correction = 1.896e-03
Minimum Relativebarshadow_correction = -2.933e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 65? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 66
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.909e-03 median = -6.152e-05 stdev = 5.698e-03
Maximum Relativebarshadow_correction = 1.364e-03
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 66? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 68
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:14:00,211 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:14:00,211 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.023e-03 median = -6.120e-05 stdev = 5.911e-03
Maximum Relativebarshadow_correction = 1.874e-03
Minimum Relativebarshadow_correction = -2.874e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 68? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 56
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:14:02,432 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:14:02,432 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.762e-03 median = -5.814e-05 stdev = 5.465e-03
Maximum Relativebarshadow_correction = 8.661e-04
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 56? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 57
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.117e-03 median = -5.980e-05 stdev = 6.014e-03
Maximum Relativebarshadow_correction = 9.866e-04
Minimum Relativebarshadow_correction = -2.872e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 57? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 58
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.065e-03 median = -4.995e-05 stdev = 5.904e-03
Maximum Relativebarshadow_correction = 7.673e-04
Minimum Relativebarshadow_correction = -2.949e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 58? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 59
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.917e-03 median = -5.683e-05 stdev = 5.668e-03
Maximum Relativebarshadow_correction = 7.876e-04
Minimum Relativebarshadow_correction = -2.899e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 59? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 60
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.055e-03 median = -6.258e-05 stdev = 5.881e-03
Maximum Relativebarshadow_correction = 1.090e-03
Minimum Relativebarshadow_correction = -2.874e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 60? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 61
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.889e-03 median = -5.227e-05 stdev = 5.674e-03
Maximum Relativebarshadow_correction = 1.279e-03
Minimum Relativebarshadow_correction = -2.899e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 61? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 62
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.812e-03 median = -5.423e-05 stdev = 5.611e-03
Maximum Relativebarshadow_correction = 1.796e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 62? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 63
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.045e-03 median = -6.162e-05 stdev = 5.899e-03
Maximum Relativebarshadow_correction = 1.109e-03
Minimum Relativebarshadow_correction = -2.880e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 63? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 64
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.029e-03 median = -5.944e-05 stdev = 5.870e-03
Maximum Relativebarshadow_correction = 1.419e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 64? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 67
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.006e-03 median = -5.915e-05 stdev = 5.856e-03
Maximum Relativebarshadow_correction = 1.246e-03
Minimum Relativebarshadow_correction = -2.849e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 67? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
* The test of barshadow_correction for slitlet 53 PASSED.
* The test of barshadow_correction for slitlet 54 PASSED.
* The test of barshadow_correction for slitlet 42 PASSED.
* The test of barshadow_correction for slitlet 43 PASSED.
* The test of barshadow_correction for slitlet 44 PASSED.
* The test of barshadow_correction for slitlet 45 PASSED.
* The test of barshadow_correction for slitlet 46 PASSED.
* The test of barshadow_correction for slitlet 47 PASSED.
* The test of barshadow_correction for slitlet 48 PASSED.
* The test of barshadow_correction for slitlet 49 PASSED.
* The test of barshadow_correction for slitlet 50 PASSED.
* The test of barshadow_correction for slitlet 51 PASSED.
* The test of barshadow_correction for slitlet 52 PASSED.
* The test of barshadow_correction for slitlet 55 PASSED.
* The test of barshadow_correction for slitlet 65 PASSED.
* The test of barshadow_correction for slitlet 66 PASSED.
* The test of barshadow_correction for slitlet 68 PASSED.
* The test of barshadow_correction for slitlet 56 PASSED.
* The test of barshadow_correction for slitlet 57 PASSED.
* The test of barshadow_correction for slitlet 58 PASSED.
* The test of barshadow_correction for slitlet 59 PASSED.
* The test of barshadow_correction for slitlet 60 PASSED.
* The test of barshadow_correction for slitlet 61 PASSED.
* The test of barshadow_correction for slitlet 62 PASSED.
* The test of barshadow_correction for slitlet 63 PASSED.
* The test of barshadow_correction for slitlet 64 PASSED.
* The test of barshadow_correction for slitlet 67 PASSED.
*** Final result for barshadow test will be reported as PASSED ***
('* Barshadow validation test took ', '48.51931548118591 seconds to finish.')
Did barshadow validation test passed?
*** Final result for barshadow test will be reported as PASSED ***
Testing files for detector: nrs2
Working with uncal_file: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS2_uncal.fits
2021-03-13 00:14:19,598 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created.
2021-03-13 00:14:19,599 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created.
2021-03-13 00:14:19,600 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created.
2021-03-13 00:14:19,601 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created.
2021-03-13 00:14:19,602 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created.
2021-03-13 00:14:19,603 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created.
2021-03-13 00:14:19,604 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created.
2021-03-13 00:14:19,605 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created.
2021-03-13 00:14:19,606 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created.
2021-03-13 00:14:19,607 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created.
2021-03-13 00:14:19,608 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created.
2021-03-13 00:14:19,609 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created.
2021-03-13 00:14:19,610 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created.
2021-03-13 00:14:19,611 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created.
2021-03-13 00:14:19,612 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created.
2021-03-13 00:14:19,613 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created.
2021-03-13 00:14:19,614 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created.
2021-03-13 00:14:20,087 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/stpipe/step.py:359: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS2_uncal.fits' mode='rb' closefd=True>
gc.collect()
2021-03-13 00:14:20,148 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k/mos_g140m_line1_NRS2_uncal.fits',).
2021-03-13 00:14:20,158 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}}}
2021-03-13 00:14:20,234 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'mos_g140m_line1_NRS2_uncal.fits' reftypes = ['dark', 'gain', 'ipc', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars']
2021-03-13 00:14:20,248 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits'.
2021-03-13 00:14:20,249 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits'.
2021-03-13 00:14:20,250 - stpipe.Detector1Pipeline - INFO - Prefetch for IPC reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_ipc_0012.fits'.
2021-03-13 00:14:20,251 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_linearity_0020.fits'.
2021-03-13 00:14:20,252 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits'.
2021-03-13 00:14:20,253 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is 'N/A'.
2021-03-13 00:14:20,253 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits'.
2021-03-13 00:14:20,254 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2021-03-13 00:14:20,255 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2021-03-13 00:14:20,255 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2021-03-13 00:14:20,255 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_saturation_0022.fits'.
2021-03-13 00:14:20,257 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits'.
2021-03-13 00:14:20,258 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is 'N/A'.
2021-03-13 00:14:20,258 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is 'N/A'.
2021-03-13 00:14:20,258 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ...
2021-03-13 00:14:20,835 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:20,837 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:21,009 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2021-03-13 00:14:21,009 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped
2021-03-13 00:14:21,010 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done
2021-03-13 00:14:21,384 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:21,386 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:21,402 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nirspec_mask_0025.fits
2021-03-13 00:14:21,681 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done
2021-03-13 00:14:22,058 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:22,059 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:22,075 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nirspec_saturation_0022.fits
2021-03-13 00:14:23,686 - stpipe.Detector1Pipeline.saturation - INFO - Detected 83201 saturated pixels
2021-03-13 00:14:23,706 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels
2021-03-13 00:14:23,713 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done
2021-03-13 00:14:24,093 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:24,094 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:24,110 - stpipe.Detector1Pipeline.ipc - INFO - Using IPC reference file /grp/crds/cache/references/jwst/jwst_nirspec_ipc_0012.fits
2021-03-13 00:14:24,657 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done
2021-03-13 00:14:25,036 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:25,037 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:25,054 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nirspec_superbias_0104.fits
2021-03-13 00:14:27,215 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done
2021-03-13 00:14:27,598 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:27,600 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}
2021-03-13 00:14:27,607 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True
2021-03-13 00:14:27,607 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True
2021-03-13 00:14:27,607 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11
2021-03-13 00:14:27,608 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000
2021-03-13 00:14:27,608 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True
2021-03-13 00:14:30,714 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done
2021-03-13 00:14:31,100 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:31,102 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:14:31,121 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nirspec_linearity_0020.fits
2021-03-13 00:14:35,400 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done
2021-03-13 00:14:35,784 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:35,785 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'dark_output': None}
2021-03-13 00:14:35,805 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nirspec_dark_0143.fits
2021-03-13 00:14:40,279 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=6, nframes=1, groupgap=0
2021-03-13 00:14:40,280 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=10, nframes=1, groupgap=0
2021-03-13 00:14:40,459 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done
2021-03-13 00:14:40,854 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:40,855 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'rejection_threshold': 4.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}
2021-03-13 00:14:40,862 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma
2021-03-13 00:14:40,872 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2021-03-13 00:14:40,914 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2021-03-13 00:14:41,466 - stpipe.Detector1Pipeline.jump - INFO - Found 32 possible cores to use for jump detection
2021-03-13 00:14:41,618 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method
2021-03-13 00:14:41,842 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1:
2021-03-13 00:14:43,326 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 68751 pixels with at least one CR
2021-03-13 00:14:46,117 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 4.4981 sec
2021-03-13 00:14:46,118 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 5.255941
2021-03-13 00:14:46,120 - stpipe.Detector1Pipeline.jump - INFO - Step jump done
2021-03-13 00:14:46,520 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 6, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:14:46,522 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}
2021-03-13 00:14:46,547 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nirspec_readnoise_0016.fits
2021-03-13 00:14:46,575 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nirspec_gain_0018.fits
2021-03-13 00:14:46,608 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols
2021-03-13 00:14:46,608 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal
2021-03-13 00:15:09,373 - stpipe.Detector1Pipeline.ramp_fit - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/ramp_fit.py:872: RuntimeWarning: invalid value encountered in multiply
var_p4[num_int,:,:,:] *= ( segs_4[num_int,:,:,:] > 0)
2021-03-13 00:15:10,065 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 6
2021-03-13 00:15:10,065 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1
2021-03-13 00:15:10,174 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done
2021-03-13 00:15:10,566 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:15:10,568 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:15:10,617 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:15:10,617 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:15:10,618 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:15:11,000 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:15:11,002 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmpw0clnv3k'}
2021-03-13 00:15:11,049 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file
2021-03-13 00:15:11,050 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped
2021-03-13 00:15:11,051 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done
2021-03-13 00:15:11,052 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1
2021-03-13 00:15:11,052 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done
2021-03-13 00:15:11,061 - stpipe.AssignWcsStep - INFO - AssignWcsStep instance created.
2021-03-13 00:15:11,452 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:15:11,454 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}
2021-03-13 00:15:11,600 - stpipe.AssignWcsStep - INFO - Retrieving open MSA slitlets for msa_metadata_id = 1 and dither_index = 1
2021-03-13 00:15:11,805 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:15:11,805 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:15:11,806 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:15:11,807 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:15:12,591 - stpipe.AssignWcsStep - INFO - Removing slit 65 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,604 - stpipe.AssignWcsStep - INFO - Removing slit 66 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,617 - stpipe.AssignWcsStep - INFO - Removing slit 68 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,654 - stpipe.AssignWcsStep - INFO - Removing slit 58 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,667 - stpipe.AssignWcsStep - INFO - Removing slit 59 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,679 - stpipe.AssignWcsStep - INFO - Removing slit 60 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,692 - stpipe.AssignWcsStep - INFO - Removing slit 61 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,705 - stpipe.AssignWcsStep - INFO - Removing slit 62 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,718 - stpipe.AssignWcsStep - INFO - Removing slit 63 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,731 - stpipe.AssignWcsStep - INFO - Removing slit 64 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,744 - stpipe.AssignWcsStep - INFO - Removing slit 67 from the list of open slits because the WCS bounding_box is completely outside the detector.
2021-03-13 00:15:12,744 - stpipe.AssignWcsStep - INFO - Slits projected on detector NRS2: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57]
2021-03-13 00:15:12,745 - stpipe.AssignWcsStep - INFO - Computing WCS for 57 open slitlets
2021-03-13 00:15:12,756 - stpipe.AssignWcsStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:15:12,757 - stpipe.AssignWcsStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:15:12,757 - stpipe.AssignWcsStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:15:12,758 - stpipe.AssignWcsStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:15:12,765 - stpipe.AssignWcsStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2021-03-13 00:15:12,855 - stpipe.AssignWcsStep - INFO - There are 27 open slits in quadrant 1
2021-03-13 00:15:13,085 - stpipe.AssignWcsStep - INFO - There are 27 open slits in quadrant 2
2021-03-13 00:15:13,305 - stpipe.AssignWcsStep - INFO - There are 1 open slits in quadrant 3
2021-03-13 00:15:13,314 - stpipe.AssignWcsStep - INFO - There are 2 open slits in quadrant 4
2021-03-13 00:15:13,331 - stpipe.AssignWcsStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:15:13,461 - stpipe.AssignWcsStep - INFO - Created a NIRSPEC nrs_msaspec pipeline with references {'distortion': None, 'filteroffset': None, 'specwcs': None, 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nirspec_wavelengthrange_0004.asdf', 'camera': '/grp/crds/cache/references/jwst/jwst_nirspec_camera_0004.asdf', 'collimator': '/grp/crds/cache/references/jwst/jwst_nirspec_collimator_0004.asdf', 'disperser': '/grp/crds/cache/references/jwst/jwst_nirspec_disperser_0032.asdf', 'fore': '/grp/crds/cache/references/jwst/jwst_nirspec_fore_0023.asdf', 'fpa': '/grp/crds/cache/references/jwst/jwst_nirspec_fpa_0005.asdf', 'msa': '/grp/crds/cache/references/jwst/jwst_nirspec_msa_0005.asdf', 'ote': '/grp/crds/cache/references/jwst/jwst_nirspec_ote_0005.asdf', 'ifupost': None, 'ifufore': None, 'ifuslicer': None, 'msametafile': 'V8460001000101_msa.fits'}
2021-03-13 00:15:14,697 - stpipe.AssignWcsStep - INFO - COMPLETED assign_wcs
2021-03-13 00:15:14,700 - stpipe.AssignWcsStep - INFO - Step AssignWcsStep done
2021-03-13 00:15:14,708 - stpipe.MSAFlagOpenStep - INFO - MSAFlagOpenStep instance created.
2021-03-13 00:15:15,218 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:15:15,221 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:15:15,238 - stpipe.MSAFlagOpenStep - INFO - Using reference file /grp/crds/cache/references/jwst/jwst_nirspec_msaoper_0001.json
2021-03-13 00:15:15,239 - stpipe.JwstStep - INFO - JwstStep instance created.
2021-03-13 00:15:15,343 - stpipe.MSAFlagOpenStep - INFO - gwa_ytilt is 0.1260581910610199 deg
2021-03-13 00:15:15,343 - stpipe.MSAFlagOpenStep - INFO - gwa_xtilt is 0.3316612243652344 deg
2021-03-13 00:15:15,344 - stpipe.MSAFlagOpenStep - INFO - theta_y correction: 0.0002496099796717191 deg
2021-03-13 00:15:15,345 - stpipe.MSAFlagOpenStep - INFO - theta_x correction: 0.0 deg
2021-03-13 00:15:15,355 - stpipe.MSAFlagOpenStep - INFO - SPORDER= -1, wrange=[9.7e-07, 1.89e-06]
2021-03-13 00:15:15,454 - stpipe.MSAFlagOpenStep - INFO - There are 5 open slits in quadrant 1
2021-03-13 00:15:15,495 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 2
2021-03-13 00:15:15,521 - stpipe.MSAFlagOpenStep - INFO - There are 9 open slits in quadrant 3
2021-03-13 00:15:15,594 - stpipe.MSAFlagOpenStep - INFO - There are 3 open slits in quadrant 4
2021-03-13 00:15:15,619 - stpipe.MSAFlagOpenStep - INFO - There are 0 open slits in quadrant 5
2021-03-13 00:15:18,302 - stpipe.MSAFlagOpenStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/geometry.py:203: RuntimeWarning: invalid value encountered in remainder
lon = np.mod(lon, 360.0 * u.deg if nquant else 360.0)
2021-03-13 00:15:27,258 - stpipe.MSAFlagOpenStep - INFO - Step MSAFlagOpenStep done
2021-03-13 00:15:27,266 - stpipe.Extract2dStep - INFO - Extract2dStep instance created.
2021-03-13 00:15:27,835 - stpipe.Extract2dStep - INFO - Step Extract2dStep running with args (<ImageModel(2048, 2048) from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:15:27,838 - stpipe.Extract2dStep - INFO - Step Extract2dStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}
2021-03-13 00:15:27,856 - stpipe.Extract2dStep - INFO - EXP_TYPE is NRS_MSASPEC
2021-03-13 00:15:28,692 - stpipe.Extract2dStep - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int)
2021-03-13 00:15:28,693 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 6
2021-03-13 00:15:28,694 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 138 1619
2021-03-13 00:15:28,694 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1761 1785
2021-03-13 00:15:28,882 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:28,891 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263159350 -45.671304678 156.263027991 -45.671181725 156.262965146 -45.671213584 156.263096502 -45.671336538
2021-03-13 00:15:28,891 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263159350 -45.671304678 156.263027991 -45.671181725 156.262965146 -45.671213584 156.263096502 -45.671336538
2021-03-13 00:15:30,397 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 7
2021-03-13 00:15:30,398 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 138 1619
2021-03-13 00:15:30,398 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1756 1780
2021-03-13 00:15:30,534 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:30,543 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263031777 -45.671185268 156.262900430 -45.671062325 156.262837587 -45.671094183 156.262968931 -45.671217127
2021-03-13 00:15:30,544 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263031777 -45.671185268 156.262900430 -45.671062325 156.262837587 -45.671094183 156.262968931 -45.671217127
2021-03-13 00:15:31,430 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 8
2021-03-13 00:15:31,431 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2021-03-13 00:15:31,431 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1806 1830
2021-03-13 00:15:31,572 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:31,580 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264221225 -45.672423837 156.264089757 -45.672300789 156.264026890 -45.672332658 156.264158355 -45.672455707
2021-03-13 00:15:31,580 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264221225 -45.672423837 156.264089757 -45.672300789 156.264026890 -45.672332658 156.264158355 -45.672455707
2021-03-13 00:15:32,926 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 9
2021-03-13 00:15:32,927 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2021-03-13 00:15:32,927 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1801 1825
2021-03-13 00:15:33,048 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:33,057 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264093546 -45.672304335 156.263962090 -45.672181297 156.263899225 -45.672213165 156.264030678 -45.672336204
2021-03-13 00:15:33,057 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264093546 -45.672304335 156.263962090 -45.672181297 156.263899225 -45.672213165 156.264030678 -45.672336204
2021-03-13 00:15:34,383 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 10
2021-03-13 00:15:34,384 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 137 1618
2021-03-13 00:15:34,384 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1796 1820
2021-03-13 00:15:34,503 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:34,511 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263965879 -45.672184843 156.263834436 -45.672061816 156.263771574 -45.672093683 156.263903014 -45.672216711
2021-03-13 00:15:34,511 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263965879 -45.672184843 156.263834436 -45.672061816 156.263771574 -45.672093683 156.263903014 -45.672216711
2021-03-13 00:15:35,470 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 11
2021-03-13 00:15:35,471 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 136 1617
2021-03-13 00:15:35,471 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1836 1860
2021-03-13 00:15:35,594 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:35,602 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264900700 -45.673185083 156.264769161 -45.673061972 156.264706280 -45.673093849 156.264837816 -45.673216961
2021-03-13 00:15:35,602 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264900700 -45.673185083 156.264769161 -45.673061972 156.264706280 -45.673093849 156.264837816 -45.673216961
2021-03-13 00:15:36,902 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 14
2021-03-13 00:15:36,902 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 104 1582
2021-03-13 00:15:36,903 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1221 1243
2021-03-13 00:15:37,021 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:37,029 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.249021000 -45.658685479 156.248891047 -45.658563629 156.248828487 -45.658595378 156.248958437 -45.658717230
2021-03-13 00:15:37,029 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.249021000 -45.658685479 156.248891047 -45.658563629 156.248828487 -45.658595378 156.248958437 -45.658717230
2021-03-13 00:15:37,841 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 15
2021-03-13 00:15:37,841 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 122 1604
2021-03-13 00:15:37,842 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1886 1910
2021-03-13 00:15:37,960 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:37,968 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.265657550 -45.674645528 156.265525910 -45.674522304 156.265463012 -45.674554193 156.265594650 -45.674677417
2021-03-13 00:15:37,968 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.265657550 -45.674645528 156.265525910 -45.674522304 156.265463012 -45.674554193 156.265594650 -45.674677417
2021-03-13 00:15:39,330 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 16
2021-03-13 00:15:39,331 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 117 1598
2021-03-13 00:15:39,331 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1821 1845
2021-03-13 00:15:39,451 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:39,458 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.263909649 -45.673134588 156.263778173 -45.673011497 156.263715311 -45.673043371 156.263846784 -45.673166463
2021-03-13 00:15:39,459 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.263909649 -45.673134588 156.263778173 -45.673011497 156.263715311 -45.673043371 156.263846784 -45.673166463
2021-03-13 00:15:40,267 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 17
2021-03-13 00:15:40,268 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 115 1597
2021-03-13 00:15:40,268 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1851 1875
2021-03-13 00:15:40,397 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:40,405 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264589177 -45.673896098 156.264457630 -45.673772943 156.264394753 -45.673804824 156.264526298 -45.673927980
2021-03-13 00:15:40,406 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264589177 -45.673896098 156.264457630 -45.673772943 156.264394753 -45.673804824 156.264526298 -45.673927980
2021-03-13 00:15:41,750 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 18
2021-03-13 00:15:41,751 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 115 1597
2021-03-13 00:15:41,751 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1846 1870
2021-03-13 00:15:41,875 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:41,883 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.264461421 -45.673776492 156.264329887 -45.673653347 156.264267013 -45.673685227 156.264398544 -45.673808373
2021-03-13 00:15:41,884 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.264461421 -45.673776492 156.264329887 -45.673653347 156.264267013 -45.673685227 156.264398544 -45.673808373
2021-03-13 00:15:43,209 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 19
2021-03-13 00:15:43,210 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 93 1571
2021-03-13 00:15:43,210 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1336 1358
2021-03-13 00:15:43,331 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:43,339 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.251408362 -45.661673296 156.251278132 -45.661551203 156.251215522 -45.661582975 156.251345749 -45.661705069
2021-03-13 00:15:43,339 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.251408362 -45.661673296 156.251278132 -45.661551203 156.251215522 -45.661582975 156.251345749 -45.661705069
2021-03-13 00:15:44,151 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 21
2021-03-13 00:15:44,151 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 89 1568
2021-03-13 00:15:44,151 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1381 1403
2021-03-13 00:15:44,268 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:44,276 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.252374207 -45.662828704 156.252243867 -45.662706516 156.252181238 -45.662738296 156.252311575 -45.662860485
2021-03-13 00:15:44,276 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.252374207 -45.662828704 156.252243867 -45.662706516 156.252181238 -45.662738296 156.252311575 -45.662860485
2021-03-13 00:15:45,644 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 25
2021-03-13 00:15:45,645 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 70 1547
2021-03-13 00:15:45,645 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1276 1298
2021-03-13 00:15:45,766 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:45,775 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.249200048 -45.660601994 156.249070003 -45.660480012 156.249007436 -45.660511773 156.249137478 -45.660633755
2021-03-13 00:15:45,776 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.249200048 -45.660601994 156.249070003 -45.660480012 156.249007436 -45.660511773 156.249137478 -45.660633755
2021-03-13 00:15:46,596 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 26
2021-03-13 00:15:46,597 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 65 1544
2021-03-13 00:15:46,597 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1562 1584
2021-03-13 00:15:46,712 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:46,720 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255900113 -45.667634746 156.255769353 -45.667512168 156.255706649 -45.667543987 156.255837406 -45.667666566
2021-03-13 00:15:46,721 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255900113 -45.667634746 156.255769353 -45.667512168 156.255706649 -45.667543987 156.255837406 -45.667666566
2021-03-13 00:15:48,106 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 27
2021-03-13 00:15:48,107 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 31 1507
2021-03-13 00:15:48,107 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1201 1222
2021-03-13 00:15:48,237 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:48,245 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.246097982 -45.659439921 156.245968181 -45.659318074 156.245905674 -45.659349821 156.246035471 -45.659471670
2021-03-13 00:15:48,246 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.246097982 -45.659439921 156.245968181 -45.659318074 156.245905674 -45.659349821 156.246035471 -45.659471670
2021-03-13 00:15:49,057 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 29
2021-03-13 00:15:49,057 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 22 1503
2021-03-13 00:15:49,058 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1867 1889
2021-03-13 00:15:49,175 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:49,183 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.261846987 -45.675840555 156.261715536 -45.675717309 156.261652705 -45.675749201 156.261784154 -45.675872448
2021-03-13 00:15:49,183 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.261846987 -45.675840555 156.261715536 -45.675717309 156.261652705 -45.675749201 156.261784154 -45.675872448
2021-03-13 00:15:50,543 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 31
2021-03-13 00:15:50,544 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1464
2021-03-13 00:15:50,544 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1367 1388
2021-03-13 00:15:50,659 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:50,666 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.248622769 -45.664184605 156.248492610 -45.664062392 156.248430047 -45.664094174 156.248560203 -45.664216388
2021-03-13 00:15:50,667 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.248622769 -45.664184605 156.248492610 -45.664062392 156.248430047 -45.664094174 156.248560203 -45.664216388
2021-03-13 00:15:51,482 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 32
2021-03-13 00:15:51,483 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1432
2021-03-13 00:15:51,483 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1352 1372
2021-03-13 00:15:51,595 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:51,603 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.247206881 -45.664355302 156.247076805 -45.664233103 156.247014266 -45.664264884 156.247144339 -45.664387085
2021-03-13 00:15:51,604 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.247206881 -45.664355302 156.247076805 -45.664233103 156.247014266 -45.664264884 156.247144339 -45.664387085
2021-03-13 00:15:52,974 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 33
2021-03-13 00:15:52,975 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1418
2021-03-13 00:15:52,975 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1272 1292
2021-03-13 00:15:53,088 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:53,095 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.244841867 -45.662633161 156.244712012 -45.662511121 156.244649520 -45.662542887 156.244779372 -45.662664928
2021-03-13 00:15:53,096 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.244841867 -45.662633161 156.244712012 -45.662511121 156.244649520 -45.662542887 156.244779372 -45.662664928
2021-03-13 00:15:53,910 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 35
2021-03-13 00:15:53,911 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1428
2021-03-13 00:15:53,911 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1722 1743
2021-03-13 00:15:54,025 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:54,033 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255896650 -45.673517700 156.255765657 -45.673394713 156.255702938 -45.673426578 156.255833929 -45.673549566
2021-03-13 00:15:54,033 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255896650 -45.673517700 156.255765657 -45.673394713 156.255702938 -45.673426578 156.255833929 -45.673549566
2021-03-13 00:15:55,400 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 37
2021-03-13 00:15:55,401 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1412
2021-03-13 00:15:55,401 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1663 1683
2021-03-13 00:15:55,513 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:55,521 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.253937935 -45.672305027 156.253807112 -45.672182158 156.253744431 -45.672214010 156.253875252 -45.672336880
2021-03-13 00:15:55,521 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.253937935 -45.672305027 156.253807112 -45.672182158 156.253744431 -45.672214010 156.253875252 -45.672336880
2021-03-13 00:15:56,347 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 38
2021-03-13 00:15:56,348 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1404
2021-03-13 00:15:56,348 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1603 1623
2021-03-13 00:15:56,460 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:56,468 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.252241050 -45.670961715 156.252110387 -45.670838969 156.252047741 -45.670870808 156.252178401 -45.670993555
2021-03-13 00:15:56,468 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.252241050 -45.670961715 156.252110387 -45.670838969 156.252047741 -45.670870808 156.252178401 -45.670993555
2021-03-13 00:15:57,855 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 39
2021-03-13 00:15:57,855 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1385
2021-03-13 00:15:57,856 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1242 1262
2021-03-13 00:15:57,967 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:57,974 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.243049984 -45.662448591 156.242920250 -45.662326596 156.242857790 -45.662358358 156.242987521 -45.662480354
2021-03-13 00:15:57,975 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.243049984 -45.662448591 156.242920250 -45.662326596 156.242857790 -45.662358358 156.242987521 -45.662480354
2021-03-13 00:15:58,782 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 41
2021-03-13 00:15:58,783 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1393
2021-03-13 00:15:58,783 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1768 1788
2021-03-13 00:15:58,894 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:15:58,902 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.255829101 -45.675209536 156.255698046 -45.675086431 156.255635323 -45.675118310 156.255766375 -45.675241415
2021-03-13 00:15:58,902 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.255829101 -45.675209536 156.255698046 -45.675086431 156.255635323 -45.675118310 156.255766375 -45.675241415
2021-03-13 00:16:00,269 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 53
2021-03-13 00:16:00,270 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 819
2021-03-13 00:16:00,270 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1315 1329
2021-03-13 00:16:00,373 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:00,381 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2021-03-13 00:16:00,381 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.226123221 -45.673642180 156.225994086 -45.673519691 156.225931834 -45.673551545 156.226060967 -45.673674035
2021-03-13 00:16:01,187 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 54
2021-03-13 00:16:01,188 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 819
2021-03-13 00:16:01,188 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1305 1319
2021-03-13 00:16:01,290 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:01,297 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2021-03-13 00:16:01,298 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.225872406 -45.673404272 156.225743296 -45.673281804 156.225681049 -45.673313656 156.225810156 -45.673436124
2021-03-13 00:16:02,677 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 1
2021-03-13 00:16:02,678 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 118 1591
2021-03-13 00:16:02,678 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 33 52
2021-03-13 00:16:02,790 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:02,797 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221266819 -45.630196596 156.221139727 -45.630076839 156.221077689 -45.630108429 156.221204778 -45.630228186
2021-03-13 00:16:02,798 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221266819 -45.630196596 156.221139727 -45.630076839 156.221077689 -45.630108429 156.221204778 -45.630228186
2021-03-13 00:16:03,607 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 2
2021-03-13 00:16:03,608 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 124 1598
2021-03-13 00:16:03,608 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 331 351
2021-03-13 00:16:03,721 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:03,729 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.228476955 -45.637109572 156.228349188 -45.636989367 156.228287022 -45.637020983 156.228414786 -45.637141189
2021-03-13 00:16:03,729 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.228476955 -45.637109572 156.228349188 -45.636989367 156.228287022 -45.637020983 156.228414786 -45.637141189
2021-03-13 00:16:05,132 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 3
2021-03-13 00:16:05,132 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 116 1589
2021-03-13 00:16:05,133 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 54 73
2021-03-13 00:16:05,246 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:05,254 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221674541 -45.630705151 156.221547408 -45.630585366 156.221485363 -45.630616957 156.221612493 -45.630736743
2021-03-13 00:16:05,254 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221674541 -45.630705151 156.221547408 -45.630585366 156.221485363 -45.630616957 156.221612493 -45.630736743
2021-03-13 00:16:06,072 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 4
2021-03-13 00:16:06,073 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 111 1584
2021-03-13 00:16:06,073 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 160 179
2021-03-13 00:16:06,184 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:06,191 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.224010549 -45.633278787 156.223883188 -45.633158845 156.223821102 -45.633190445 156.223948460 -45.633310387
2021-03-13 00:16:06,192 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.224010549 -45.633278787 156.223883188 -45.633158845 156.223821102 -45.633190445 156.223948460 -45.633310387
2021-03-13 00:16:07,585 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 5
2021-03-13 00:16:07,586 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 99 1573
2021-03-13 00:16:07,586 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 306 326
2021-03-13 00:16:07,700 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:07,707 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.227084510 -45.636919416 156.226956832 -45.636799245 156.226894691 -45.636830857 156.227022367 -45.636951029
2021-03-13 00:16:07,708 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.227084510 -45.636919416 156.226956832 -45.636799245 156.226894691 -45.636830857 156.227022367 -45.636951029
2021-03-13 00:16:08,526 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 12
2021-03-13 00:16:08,527 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 91 1566
2021-03-13 00:16:08,527 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 483 503
2021-03-13 00:16:08,649 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:08,657 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.230998580 -45.641224458 156.230870498 -45.641103991 156.230808285 -45.641135623 156.230936364 -45.641256090
2021-03-13 00:16:08,657 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.230998580 -45.641224458 156.230870498 -45.641103991 156.230808285 -45.641135623 156.230936364 -45.641256090
2021-03-13 00:16:10,071 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 13
2021-03-13 00:16:10,072 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 80 1553
2021-03-13 00:16:10,072 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 94 113
2021-03-13 00:16:10,184 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:10,192 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221461889 -45.632246282 156.221334710 -45.632126430 156.221272668 -45.632158022 156.221399846 -45.632277874
2021-03-13 00:16:10,192 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221461889 -45.632246282 156.221334710 -45.632126430 156.221272668 -45.632158022 156.221399846 -45.632277874
2021-03-13 00:16:10,998 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 20
2021-03-13 00:16:10,999 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 76 1551
2021-03-13 00:16:10,999 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 750 770
2021-03-13 00:16:11,114 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:11,122 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.236828252 -45.647826217 156.236699542 -45.647705266 156.236637217 -45.647736933 156.236765924 -45.647857884
2021-03-13 00:16:11,123 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.236828252 -45.647826217 156.236699542 -45.647705266 156.236637217 -45.647736933 156.236765924 -45.647857884
2021-03-13 00:16:12,527 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 22
2021-03-13 00:16:12,527 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 68 1542
2021-03-13 00:16:12,528 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 644 664
2021-03-13 00:16:12,643 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:12,650 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.234035860 -45.645450737 156.233907420 -45.645329977 156.233845148 -45.645361628 156.233973585 -45.645482389
2021-03-13 00:16:12,651 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.234035860 -45.645450737 156.233907420 -45.645329977 156.233845148 -45.645361628 156.233973585 -45.645482389
2021-03-13 00:16:13,465 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 23
2021-03-13 00:16:13,466 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 52 1525
2021-03-13 00:16:13,466 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 115 133
2021-03-13 00:16:13,576 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:13,583 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.221012951 -45.633191592 156.220885760 -45.633071703 156.220823726 -45.633103294 156.220950915 -45.633223183
2021-03-13 00:16:13,584 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.221012951 -45.633191592 156.220885760 -45.633071703 156.220823726 -45.633103294 156.220950915 -45.633223183
2021-03-13 00:16:14,993 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 24
2021-03-13 00:16:14,994 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 69 1545
2021-03-13 00:16:14,994 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 785 805
2021-03-13 00:16:15,108 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:15,117 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.237444560 -45.648779316 156.237315772 -45.648658296 156.237253434 -45.648689968 156.237382219 -45.648810988
2021-03-13 00:16:15,117 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.237444560 -45.648779316 156.237315772 -45.648658296 156.237253434 -45.648689968 156.237382219 -45.648810988
2021-03-13 00:16:15,922 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 28
2021-03-13 00:16:15,923 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 11 1485
2021-03-13 00:16:15,923 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 660 679
2021-03-13 00:16:16,034 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:16,042 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.232517711 -45.646764241 156.232389309 -45.646643431 156.232327062 -45.646675084 156.232455462 -45.646795894
2021-03-13 00:16:16,042 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.232517711 -45.646764241 156.232389309 -45.646643431 156.232327062 -45.646675084 156.232455462 -45.646795894
2021-03-13 00:16:17,469 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 30
2021-03-13 00:16:17,470 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1457
2021-03-13 00:16:17,470 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 700 719
2021-03-13 00:16:17,583 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:17,591 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.232568977 -45.648183467 156.232440513 -45.648062572 156.232378263 -45.648094230 156.232506725 -45.648215126
2021-03-13 00:16:17,591 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.232568977 -45.648183467 156.232440513 -45.648062572 156.232378263 -45.648094230 156.232506725 -45.648215126
2021-03-13 00:16:18,403 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 34
2021-03-13 00:16:18,403 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1394
2021-03-13 00:16:18,404 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 715 734
2021-03-13 00:16:18,513 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:18,521 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.230879662 -45.649585075 156.230751242 -45.649464125 156.230689019 -45.649495787 156.230817437 -45.649616737
2021-03-13 00:16:18,521 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.230879662 -45.649585075 156.230751242 -45.649464125 156.230689019 -45.649495787 156.230817437 -45.649616737
2021-03-13 00:16:19,951 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 36
2021-03-13 00:16:19,951 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1377
2021-03-13 00:16:19,952 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 449 466
2021-03-13 00:16:20,062 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:20,069 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.224033871 -45.643507774 156.223906106 -45.643387302 156.223844011 -45.643418924 156.223971774 -45.643539396
2021-03-13 00:16:20,070 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.224033871 -45.643507774 156.223906106 -45.643387302 156.223844011 -45.643418924 156.223971774 -45.643539396
2021-03-13 00:16:20,883 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 40
2021-03-13 00:16:20,884 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1343
2021-03-13 00:16:20,884 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 217 234
2021-03-13 00:16:20,992 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:20,999 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217486084 -45.638574970 156.217358883 -45.638454874 156.217296902 -45.638486467 156.217424102 -45.638606563
2021-03-13 00:16:21,000 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217486084 -45.638574970 156.217358883 -45.638454874 156.217296902 -45.638486467 156.217424102 -45.638606563
2021-03-13 00:16:22,442 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 42
2021-03-13 00:16:22,442 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1296
2021-03-13 00:16:22,443 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 545 562
2021-03-13 00:16:22,552 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:22,560 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2021-03-13 00:16:22,560 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.223646010 -45.647128995 156.223518121 -45.647008321 156.223456024 -45.647039957 156.223583911 -45.647160632
2021-03-13 00:16:23,382 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 43
2021-03-13 00:16:23,383 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1246
2021-03-13 00:16:23,383 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 414 430
2021-03-13 00:16:23,490 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:23,498 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2021-03-13 00:16:23,499 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218966486 -45.644829601 156.218838959 -45.644709141 156.218776943 -45.644740759 156.218904467 -45.644861220
2021-03-13 00:16:24,940 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 44
2021-03-13 00:16:24,940 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1246
2021-03-13 00:16:24,941 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 404 420
2021-03-13 00:16:25,047 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:25,055 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2021-03-13 00:16:25,055 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218718991 -45.644595818 156.218591488 -45.644475376 156.218529475 -45.644506992 156.218656977 -45.644627436
2021-03-13 00:16:25,881 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 45
2021-03-13 00:16:25,882 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1185
2021-03-13 00:16:25,882 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 530 546
2021-03-13 00:16:25,989 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:25,997 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2021-03-13 00:16:25,997 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219673020 -45.648613077 156.219545303 -45.648492383 156.219483265 -45.648524021 156.219610979 -45.648644716
2021-03-13 00:16:26,815 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 46
2021-03-13 00:16:26,816 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1158
2021-03-13 00:16:26,816 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 202 218
2021-03-13 00:16:26,923 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:26,931 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2021-03-13 00:16:26,931 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211127421 -45.641279813 156.211000463 -45.641159678 156.210938572 -45.641191268 156.211065527 -45.641311404
2021-03-13 00:16:28,424 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 47
2021-03-13 00:16:28,424 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1091
2021-03-13 00:16:28,425 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 566 581
2021-03-13 00:16:28,531 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:28,539 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2021-03-13 00:16:28,539 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217456055 -45.651006881 156.217328370 -45.650886079 156.217266356 -45.650917729 156.217394038 -45.651038531
2021-03-13 00:16:29,356 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 48
2021-03-13 00:16:29,356 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1091
2021-03-13 00:16:29,357 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 561 576
2021-03-13 00:16:29,461 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:29,469 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2021-03-13 00:16:29,470 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.217332149 -45.650889654 156.217204477 -45.650768862 156.217142464 -45.650800511 156.217270135 -45.650921304
2021-03-13 00:16:30,940 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 49
2021-03-13 00:16:30,940 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1067
2021-03-13 00:16:30,941 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 632 647
2021-03-13 00:16:31,047 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:31,055 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2021-03-13 00:16:31,056 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.218210913 -45.652969013 156.218083107 -45.652848076 156.218021073 -45.652879740 156.218148877 -45.653000678
2021-03-13 00:16:31,868 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 50
2021-03-13 00:16:31,869 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1048
2021-03-13 00:16:31,869 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 238 253
2021-03-13 00:16:31,974 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:31,981 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2021-03-13 00:16:31,982 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.208399869 -45.643929179 156.208272959 -45.643808942 156.208211096 -45.643840541 156.208338005 -45.643960778
2021-03-13 00:16:32,794 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 51
2021-03-13 00:16:32,794 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 1034
2021-03-13 00:16:32,795 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 430 445
2021-03-13 00:16:32,900 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:32,907 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2021-03-13 00:16:32,908 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.212403238 -45.648718689 156.212275928 -45.648598111 156.212213993 -45.648629742 156.212341301 -45.648750320
2021-03-13 00:16:34,404 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 52
2021-03-13 00:16:34,405 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 998
2021-03-13 00:16:34,405 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 803 817
2021-03-13 00:16:34,510 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:34,518 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2021-03-13 00:16:34,518 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.219947139 -45.658234585 156.219819020 -45.658113276 156.219756938 -45.658144979 156.219885055 -45.658266289
2021-03-13 00:16:35,332 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 55
2021-03-13 00:16:35,332 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 297
2021-03-13 00:16:35,333 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 1415 1430
2021-03-13 00:16:35,433 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:35,440 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2021-03-13 00:16:35,441 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.211226719 -45.684941334 156.211098073 -45.684818233 156.211035880 -45.684850241 156.211164524 -45.684973343
2021-03-13 00:16:36,909 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 56
2021-03-13 00:16:36,910 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 143
2021-03-13 00:16:36,910 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 768 783
2021-03-13 00:16:37,009 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:37,017 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2021-03-13 00:16:37,017 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.191122501 -45.671742959 156.190995485 -45.671621176 156.190933579 -45.671653049 156.191060593 -45.671774833
2021-03-13 00:16:37,834 - stpipe.Extract2dStep - INFO - Name of subarray extracted: 57
2021-03-13 00:16:37,834 - stpipe.Extract2dStep - INFO - Subarray x-extents are: 0 74
2021-03-13 00:16:37,835 - stpipe.Extract2dStep - INFO - Subarray y-extents are: 354 370
2021-03-13 00:16:37,932 - stpipe.Extract2dStep - INFO - set slit_attributes completed
2021-03-13 00:16:37,940 - stpipe.Extract2dStep - INFO - Update S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2021-03-13 00:16:37,940 - stpipe.Extract2dStep - INFO - Updated S_REGION to POLYGON ICRS 156.179343124 -45.662963603 156.179216994 -45.662842617 156.179155236 -45.662874401 156.179281365 -45.662995389
2021-03-13 00:16:39,590 - stpipe.Extract2dStep - INFO - Step Extract2dStep done
2021-03-13 00:16:42,525 - stpipe.SourceTypeStep - INFO - SourceTypeStep instance created.
2021-03-13 00:16:43,291 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:16:43,293 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': ''}
2021-03-13 00:16:43,300 - stpipe.SourceTypeStep - INFO - Input EXP_TYPE is NRS_MSASPEC
2021-03-13 00:16:43,301 - stpipe.SourceTypeStep - INFO - source_id=6, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,301 - stpipe.SourceTypeStep - INFO - source_id=7, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,301 - stpipe.SourceTypeStep - INFO - source_id=8, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,302 - stpipe.SourceTypeStep - INFO - source_id=9, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,302 - stpipe.SourceTypeStep - INFO - source_id=10, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,303 - stpipe.SourceTypeStep - INFO - source_id=11, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,303 - stpipe.SourceTypeStep - INFO - source_id=14, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,304 - stpipe.SourceTypeStep - INFO - source_id=15, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,304 - stpipe.SourceTypeStep - INFO - source_id=16, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,305 - stpipe.SourceTypeStep - INFO - source_id=17, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,305 - stpipe.SourceTypeStep - INFO - source_id=18, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,305 - stpipe.SourceTypeStep - INFO - source_id=19, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,306 - stpipe.SourceTypeStep - INFO - source_id=21, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,306 - stpipe.SourceTypeStep - INFO - source_id=25, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,307 - stpipe.SourceTypeStep - INFO - source_id=26, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,307 - stpipe.SourceTypeStep - INFO - source_id=27, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,309 - stpipe.SourceTypeStep - INFO - source_id=29, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,309 - stpipe.SourceTypeStep - INFO - source_id=31, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,310 - stpipe.SourceTypeStep - INFO - source_id=32, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,310 - stpipe.SourceTypeStep - INFO - source_id=33, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,311 - stpipe.SourceTypeStep - INFO - source_id=35, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,311 - stpipe.SourceTypeStep - INFO - source_id=37, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,312 - stpipe.SourceTypeStep - INFO - source_id=38, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,312 - stpipe.SourceTypeStep - INFO - source_id=39, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,313 - stpipe.SourceTypeStep - INFO - source_id=41, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,313 - stpipe.SourceTypeStep - INFO - source_id=53, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,314 - stpipe.SourceTypeStep - INFO - source_id=54, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,314 - stpipe.SourceTypeStep - INFO - source_id=1, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,315 - stpipe.SourceTypeStep - INFO - source_id=2, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,315 - stpipe.SourceTypeStep - INFO - source_id=3, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,316 - stpipe.SourceTypeStep - INFO - source_id=4, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,316 - stpipe.SourceTypeStep - INFO - source_id=5, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,316 - stpipe.SourceTypeStep - INFO - source_id=12, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,317 - stpipe.SourceTypeStep - INFO - source_id=13, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,317 - stpipe.SourceTypeStep - INFO - source_id=20, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,318 - stpipe.SourceTypeStep - INFO - source_id=22, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,318 - stpipe.SourceTypeStep - INFO - source_id=23, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,319 - stpipe.SourceTypeStep - INFO - source_id=24, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,319 - stpipe.SourceTypeStep - INFO - source_id=28, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,319 - stpipe.SourceTypeStep - INFO - source_id=30, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,320 - stpipe.SourceTypeStep - INFO - source_id=34, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,320 - stpipe.SourceTypeStep - INFO - source_id=36, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,321 - stpipe.SourceTypeStep - INFO - source_id=40, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,321 - stpipe.SourceTypeStep - INFO - source_id=42, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,322 - stpipe.SourceTypeStep - INFO - source_id=43, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,322 - stpipe.SourceTypeStep - INFO - source_id=44, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,322 - stpipe.SourceTypeStep - INFO - source_id=45, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,323 - stpipe.SourceTypeStep - INFO - source_id=46, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,323 - stpipe.SourceTypeStep - INFO - source_id=47, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,324 - stpipe.SourceTypeStep - INFO - source_id=48, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,324 - stpipe.SourceTypeStep - INFO - source_id=49, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,325 - stpipe.SourceTypeStep - INFO - source_id=50, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,327 - stpipe.SourceTypeStep - INFO - source_id=51, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,327 - stpipe.SourceTypeStep - INFO - source_id=52, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,328 - stpipe.SourceTypeStep - INFO - source_id=55, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,328 - stpipe.SourceTypeStep - INFO - source_id=56, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,329 - stpipe.SourceTypeStep - INFO - source_id=57, stellarity=0.0000, type=EXTENDED
2021-03-13 00:16:43,329 - stpipe.SourceTypeStep - INFO - Step SourceTypeStep done
2021-03-13 00:16:43,442 - stpipe.FlatFieldStep - INFO - FlatFieldStep instance created.
2021-03-13 00:16:44,012 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:16:44,013 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}
2021-03-13 00:17:08,801 - stpipe.FlatFieldStep - INFO - Working on slit 6
2021-03-13 00:17:10,806 - stpipe.FlatFieldStep - INFO - Working on slit 7
2021-03-13 00:17:12,830 - stpipe.FlatFieldStep - INFO - Working on slit 8
2021-03-13 00:17:14,845 - stpipe.FlatFieldStep - INFO - Working on slit 9
2021-03-13 00:17:16,870 - stpipe.FlatFieldStep - INFO - Working on slit 10
2021-03-13 00:17:18,862 - stpipe.FlatFieldStep - INFO - Working on slit 11
2021-03-13 00:17:20,863 - stpipe.FlatFieldStep - INFO - Working on slit 14
2021-03-13 00:17:22,890 - stpipe.FlatFieldStep - INFO - Working on slit 15
2021-03-13 00:17:24,865 - stpipe.FlatFieldStep - INFO - Working on slit 16
2021-03-13 00:17:26,829 - stpipe.FlatFieldStep - INFO - Working on slit 17
2021-03-13 00:17:28,840 - stpipe.FlatFieldStep - INFO - Working on slit 18
2021-03-13 00:17:30,829 - stpipe.FlatFieldStep - INFO - Working on slit 19
2021-03-13 00:17:32,800 - stpipe.FlatFieldStep - INFO - Working on slit 21
2021-03-13 00:17:34,795 - stpipe.FlatFieldStep - INFO - Working on slit 25
2021-03-13 00:17:36,810 - stpipe.FlatFieldStep - INFO - Working on slit 26
2021-03-13 00:17:38,823 - stpipe.FlatFieldStep - INFO - Working on slit 27
2021-03-13 00:17:40,826 - stpipe.FlatFieldStep - INFO - Working on slit 29
2021-03-13 00:17:42,815 - stpipe.FlatFieldStep - INFO - Working on slit 31
2021-03-13 00:17:44,772 - stpipe.FlatFieldStep - INFO - Working on slit 32
2021-03-13 00:17:46,618 - stpipe.FlatFieldStep - INFO - Working on slit 33
2021-03-13 00:17:48,508 - stpipe.FlatFieldStep - INFO - Working on slit 35
2021-03-13 00:17:50,362 - stpipe.FlatFieldStep - INFO - Working on slit 37
2021-03-13 00:17:52,208 - stpipe.FlatFieldStep - INFO - Working on slit 38
2021-03-13 00:17:54,067 - stpipe.FlatFieldStep - INFO - Working on slit 39
2021-03-13 00:17:55,935 - stpipe.FlatFieldStep - INFO - Working on slit 41
2021-03-13 00:17:57,824 - stpipe.FlatFieldStep - INFO - Working on slit 53
2021-03-13 00:17:58,917 - stpipe.FlatFieldStep - INFO - Working on slit 54
2021-03-13 00:18:00,017 - stpipe.FlatFieldStep - INFO - Working on slit 1
2021-03-13 00:18:02,001 - stpipe.FlatFieldStep - INFO - Working on slit 2
2021-03-13 00:18:03,917 - stpipe.FlatFieldStep - INFO - Working on slit 3
2021-03-13 00:18:05,869 - stpipe.FlatFieldStep - INFO - Working on slit 4
2021-03-13 00:18:07,841 - stpipe.FlatFieldStep - INFO - Working on slit 5
2021-03-13 00:18:09,843 - stpipe.FlatFieldStep - INFO - Working on slit 12
2021-03-13 00:18:11,845 - stpipe.FlatFieldStep - INFO - Working on slit 13
2021-03-13 00:18:13,874 - stpipe.FlatFieldStep - INFO - Working on slit 20
2021-03-13 00:18:15,824 - stpipe.FlatFieldStep - INFO - Working on slit 22
2021-03-13 00:18:17,827 - stpipe.FlatFieldStep - INFO - Working on slit 23
2021-03-13 00:18:19,796 - stpipe.FlatFieldStep - INFO - Working on slit 24
2021-03-13 00:18:21,750 - stpipe.FlatFieldStep - INFO - Working on slit 28
2021-03-13 00:18:23,697 - stpipe.FlatFieldStep - INFO - Working on slit 30
2021-03-13 00:18:25,657 - stpipe.FlatFieldStep - INFO - Working on slit 34
2021-03-13 00:18:27,447 - stpipe.FlatFieldStep - INFO - Working on slit 36
2021-03-13 00:18:29,220 - stpipe.FlatFieldStep - INFO - Working on slit 40
2021-03-13 00:18:30,956 - stpipe.FlatFieldStep - INFO - Working on slit 42
2021-03-13 00:18:32,702 - stpipe.FlatFieldStep - INFO - Working on slit 43
2021-03-13 00:18:34,399 - stpipe.FlatFieldStep - INFO - Working on slit 44
2021-03-13 00:18:36,087 - stpipe.FlatFieldStep - INFO - Working on slit 45
2021-03-13 00:18:37,692 - stpipe.FlatFieldStep - INFO - Working on slit 46
2021-03-13 00:18:39,272 - stpipe.FlatFieldStep - INFO - Working on slit 47
2021-03-13 00:18:40,732 - stpipe.FlatFieldStep - INFO - Working on slit 48
2021-03-13 00:18:42,226 - stpipe.FlatFieldStep - INFO - Working on slit 49
2021-03-13 00:18:43,666 - stpipe.FlatFieldStep - INFO - Working on slit 50
2021-03-13 00:18:45,118 - stpipe.FlatFieldStep - INFO - Working on slit 51
2021-03-13 00:18:46,527 - stpipe.FlatFieldStep - INFO - Working on slit 52
2021-03-13 00:18:47,834 - stpipe.FlatFieldStep - INFO - Working on slit 55
2021-03-13 00:18:48,280 - stpipe.FlatFieldStep - INFO - Working on slit 56
2021-03-13 00:18:48,532 - stpipe.FlatFieldStep - INFO - Working on slit 57
2021-03-13 00:18:50,197 - stpipe.FlatFieldStep - INFO - Step FlatFieldStep done
2021-03-13 00:18:50,300 - stpipe.PathLossStep - INFO - PathLossStep instance created.
2021-03-13 00:18:51,577 - stpipe.PathLossStep - INFO - Step PathLossStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:18:51,583 - stpipe.PathLossStep - INFO - Step PathLossStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:18:51,697 - stpipe.PathLossStep - INFO - Using PATHLOSS reference file /grp/crds/cache/references/jwst/jwst_nirspec_pathloss_0002.fits
2021-03-13 00:18:51,725 - stpipe.PathLossStep - INFO - Input exposure type is NRS_MSASPEC
2021-03-13 00:18:59,510 - stpipe.PathLossStep - INFO - Working on slit 0
2021-03-13 00:18:59,524 - stpipe.PathLossStep - INFO - Working on slit 1
2021-03-13 00:18:59,536 - stpipe.PathLossStep - INFO - Working on slit 2
2021-03-13 00:18:59,549 - stpipe.PathLossStep - INFO - Working on slit 3
2021-03-13 00:18:59,565 - stpipe.PathLossStep - INFO - Working on slit 4
2021-03-13 00:18:59,580 - stpipe.PathLossStep - INFO - Working on slit 5
2021-03-13 00:18:59,594 - stpipe.PathLossStep - INFO - Working on slit 6
2021-03-13 00:18:59,606 - stpipe.PathLossStep - INFO - Working on slit 7
2021-03-13 00:18:59,619 - stpipe.PathLossStep - INFO - Working on slit 8
2021-03-13 00:18:59,631 - stpipe.PathLossStep - INFO - Working on slit 9
2021-03-13 00:18:59,645 - stpipe.PathLossStep - INFO - Working on slit 10
2021-03-13 00:18:59,657 - stpipe.PathLossStep - INFO - Working on slit 11
2021-03-13 00:18:59,670 - stpipe.PathLossStep - INFO - Working on slit 12
2021-03-13 00:18:59,682 - stpipe.PathLossStep - INFO - Working on slit 13
2021-03-13 00:18:59,695 - stpipe.PathLossStep - INFO - Working on slit 14
2021-03-13 00:18:59,707 - stpipe.PathLossStep - INFO - Working on slit 15
2021-03-13 00:18:59,720 - stpipe.PathLossStep - INFO - Working on slit 16
2021-03-13 00:18:59,732 - stpipe.PathLossStep - INFO - Working on slit 17
2021-03-13 00:18:59,746 - stpipe.PathLossStep - INFO - Working on slit 18
2021-03-13 00:18:59,758 - stpipe.PathLossStep - INFO - Working on slit 19
2021-03-13 00:18:59,770 - stpipe.PathLossStep - INFO - Working on slit 20
2021-03-13 00:18:59,782 - stpipe.PathLossStep - INFO - Working on slit 21
2021-03-13 00:18:59,795 - stpipe.PathLossStep - INFO - Working on slit 22
2021-03-13 00:18:59,807 - stpipe.PathLossStep - INFO - Working on slit 23
2021-03-13 00:18:59,819 - stpipe.PathLossStep - INFO - Working on slit 24
2021-03-13 00:18:59,832 - stpipe.PathLossStep - INFO - Working on slit 25
2021-03-13 00:18:59,844 - stpipe.PathLossStep - INFO - Working on slit 26
2021-03-13 00:18:59,855 - stpipe.PathLossStep - INFO - Working on slit 27
2021-03-13 00:18:59,868 - stpipe.PathLossStep - INFO - Working on slit 28
2021-03-13 00:18:59,880 - stpipe.PathLossStep - INFO - Working on slit 29
2021-03-13 00:18:59,893 - stpipe.PathLossStep - INFO - Working on slit 30
2021-03-13 00:18:59,905 - stpipe.PathLossStep - INFO - Working on slit 31
2021-03-13 00:18:59,918 - stpipe.PathLossStep - INFO - Working on slit 32
2021-03-13 00:18:59,930 - stpipe.PathLossStep - INFO - Working on slit 33
2021-03-13 00:18:59,944 - stpipe.PathLossStep - INFO - Working on slit 34
2021-03-13 00:18:59,956 - stpipe.PathLossStep - INFO - Working on slit 35
2021-03-13 00:18:59,968 - stpipe.PathLossStep - INFO - Working on slit 36
2021-03-13 00:18:59,981 - stpipe.PathLossStep - INFO - Working on slit 37
2021-03-13 00:18:59,994 - stpipe.PathLossStep - INFO - Working on slit 38
2021-03-13 00:19:00,006 - stpipe.PathLossStep - INFO - Working on slit 39
2021-03-13 00:19:00,019 - stpipe.PathLossStep - INFO - Working on slit 40
2021-03-13 00:19:00,031 - stpipe.PathLossStep - INFO - Working on slit 41
2021-03-13 00:19:00,044 - stpipe.PathLossStep - INFO - Working on slit 42
2021-03-13 00:19:00,056 - stpipe.PathLossStep - INFO - Working on slit 43
2021-03-13 00:19:00,068 - stpipe.PathLossStep - INFO - Working on slit 44
2021-03-13 00:19:00,081 - stpipe.PathLossStep - INFO - Working on slit 45
2021-03-13 00:19:00,094 - stpipe.PathLossStep - INFO - Working on slit 46
2021-03-13 00:19:00,105 - stpipe.PathLossStep - INFO - Working on slit 47
2021-03-13 00:19:00,117 - stpipe.PathLossStep - INFO - Working on slit 48
2021-03-13 00:19:00,129 - stpipe.PathLossStep - INFO - Working on slit 49
2021-03-13 00:19:00,142 - stpipe.PathLossStep - INFO - Working on slit 50
2021-03-13 00:19:00,154 - stpipe.PathLossStep - INFO - Working on slit 51
2021-03-13 00:19:00,166 - stpipe.PathLossStep - INFO - Working on slit 52
2021-03-13 00:19:00,178 - stpipe.PathLossStep - INFO - Working on slit 53
2021-03-13 00:19:00,191 - stpipe.PathLossStep - INFO - Working on slit 54
2021-03-13 00:19:00,202 - stpipe.PathLossStep - INFO - Working on slit 55
2021-03-13 00:19:00,214 - stpipe.PathLossStep - INFO - Working on slit 56
2021-03-13 00:19:00,226 - stpipe.PathLossStep - INFO - Step PathLossStep done
2021-03-13 00:19:00,328 - stpipe.BarShadowStep - INFO - BarShadowStep instance created.
2021-03-13 00:19:01,297 - stpipe.BarShadowStep - INFO - Step BarShadowStep running with args (<MultiSlitModel from mos_g140m_line1_NRS2_uncal.fits>,).
2021-03-13 00:19:01,300 - stpipe.BarShadowStep - INFO - Step BarShadowStep parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '', 'inverse': False, 'source_type': None}
2021-03-13 00:19:01,407 - stpipe.BarShadowStep - INFO - Using BARSHADOW reference file /grp/crds/cache/references/jwst/jwst_nirspec_barshadow_0001.fits
2021-03-13 00:19:08,531 - stpipe.BarShadowStep - INFO - Working on slitlet 6
2021-03-13 00:19:08,652 - stpipe.BarShadowStep - INFO - Working on slitlet 7
2021-03-13 00:19:08,762 - stpipe.BarShadowStep - INFO - Working on slitlet 8
2021-03-13 00:19:08,872 - stpipe.BarShadowStep - INFO - Working on slitlet 9
2021-03-13 00:19:08,984 - stpipe.BarShadowStep - INFO - Working on slitlet 10
2021-03-13 00:19:09,093 - stpipe.BarShadowStep - INFO - Working on slitlet 11
2021-03-13 00:19:09,204 - stpipe.BarShadowStep - INFO - Working on slitlet 14
2021-03-13 00:19:09,311 - stpipe.BarShadowStep - INFO - Working on slitlet 15
2021-03-13 00:19:09,421 - stpipe.BarShadowStep - INFO - Working on slitlet 16
2021-03-13 00:19:09,530 - stpipe.BarShadowStep - INFO - Working on slitlet 17
2021-03-13 00:19:09,643 - stpipe.BarShadowStep - INFO - Working on slitlet 18
2021-03-13 00:19:09,753 - stpipe.BarShadowStep - INFO - Working on slitlet 19
2021-03-13 00:19:09,858 - stpipe.BarShadowStep - INFO - Working on slitlet 21
2021-03-13 00:19:09,963 - stpipe.BarShadowStep - INFO - Working on slitlet 25
2021-03-13 00:19:10,068 - stpipe.BarShadowStep - INFO - Working on slitlet 26
2021-03-13 00:19:10,172 - stpipe.BarShadowStep - INFO - Working on slitlet 27
2021-03-13 00:19:10,275 - stpipe.BarShadowStep - INFO - Working on slitlet 29
2021-03-13 00:19:10,379 - stpipe.BarShadowStep - INFO - Working on slitlet 31
2021-03-13 00:19:10,480 - stpipe.BarShadowStep - INFO - Working on slitlet 32
2021-03-13 00:19:10,576 - stpipe.BarShadowStep - INFO - Working on slitlet 33
2021-03-13 00:19:10,671 - stpipe.BarShadowStep - INFO - Working on slitlet 35
2021-03-13 00:19:10,770 - stpipe.BarShadowStep - INFO - Working on slitlet 37
2021-03-13 00:19:10,866 - stpipe.BarShadowStep - INFO - Working on slitlet 38
2021-03-13 00:19:10,959 - stpipe.BarShadowStep - INFO - Working on slitlet 39
2021-03-13 00:19:11,053 - stpipe.BarShadowStep - INFO - Working on slitlet 41
2021-03-13 00:19:11,147 - stpipe.BarShadowStep - INFO - Working on slitlet 53
2021-03-13 00:19:11,200 - stpipe.BarShadowStep - INFO - Working on slitlet 54
2021-03-13 00:19:11,253 - stpipe.BarShadowStep - INFO - Working on slitlet 1
2021-03-13 00:19:11,350 - stpipe.BarShadowStep - INFO - Working on slitlet 2
2021-03-13 00:19:11,450 - stpipe.BarShadowStep - INFO - Working on slitlet 3
2021-03-13 00:19:11,546 - stpipe.BarShadowStep - INFO - Working on slitlet 4
2021-03-13 00:19:11,643 - stpipe.BarShadowStep - INFO - Working on slitlet 5
2021-03-13 00:19:11,742 - stpipe.BarShadowStep - INFO - Working on slitlet 12
2021-03-13 00:19:11,841 - stpipe.BarShadowStep - INFO - Working on slitlet 13
2021-03-13 00:19:11,938 - stpipe.BarShadowStep - INFO - Working on slitlet 20
2021-03-13 00:19:12,037 - stpipe.BarShadowStep - INFO - Working on slitlet 22
2021-03-13 00:19:12,136 - stpipe.BarShadowStep - INFO - Working on slitlet 23
2021-03-13 00:19:12,231 - stpipe.BarShadowStep - INFO - Working on slitlet 24
2021-03-13 00:19:12,330 - stpipe.BarShadowStep - INFO - Working on slitlet 28
2021-03-13 00:19:12,426 - stpipe.BarShadowStep - INFO - Working on slitlet 30
2021-03-13 00:19:12,521 - stpipe.BarShadowStep - INFO - Working on slitlet 34
2021-03-13 00:19:12,613 - stpipe.BarShadowStep - INFO - Working on slitlet 36
2021-03-13 00:19:12,698 - stpipe.BarShadowStep - INFO - Working on slitlet 40
2021-03-13 00:19:12,783 - stpipe.BarShadowStep - INFO - Working on slitlet 42
2021-03-13 00:19:12,865 - stpipe.BarShadowStep - INFO - Working on slitlet 43
2021-03-13 00:19:12,942 - stpipe.BarShadowStep - INFO - Working on slitlet 44
2021-03-13 00:19:13,019 - stpipe.BarShadowStep - INFO - Working on slitlet 45
2021-03-13 00:19:13,093 - stpipe.BarShadowStep - INFO - Working on slitlet 46
2021-03-13 00:19:13,166 - stpipe.BarShadowStep - INFO - Working on slitlet 47
2021-03-13 00:19:13,235 - stpipe.BarShadowStep - INFO - Working on slitlet 48
2021-03-13 00:19:13,303 - stpipe.BarShadowStep - INFO - Working on slitlet 49
2021-03-13 00:19:13,369 - stpipe.BarShadowStep - INFO - Working on slitlet 50
2021-03-13 00:19:13,435 - stpipe.BarShadowStep - INFO - Working on slitlet 51
2021-03-13 00:19:13,500 - stpipe.BarShadowStep - INFO - Working on slitlet 52
2021-03-13 00:19:13,561 - stpipe.BarShadowStep - INFO - Working on slitlet 55
2021-03-13 00:19:13,593 - stpipe.BarShadowStep - INFO - Working on slitlet 56
2021-03-13 00:19:13,616 - stpipe.BarShadowStep - INFO - Working on slitlet 57
2021-03-13 00:19:13,638 - stpipe.BarShadowStep - INFO - Step BarShadowStep done
Looping over open slitlets... Working with slitlet 6 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. nan nan Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.016e-03 median = -6.641e-05 stdev = 5.836e-03
Maximum Relativebarshadow_correction = 1.718e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 6? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 7
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.018e-03 median = -6.669e-05 stdev = 5.843e-03
Maximum Relativebarshadow_correction = 1.708e-03
Minimum Relativebarshadow_correction = -2.869e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 7? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 8
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.994e-03 median = -6.250e-05 stdev = 5.798e-03
Maximum Relativebarshadow_correction = 1.902e-03
Minimum Relativebarshadow_correction = -2.855e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 8? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 9
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.003e-03 median = -6.510e-05 stdev = 5.814e-03
Maximum Relativebarshadow_correction = 1.475e-03
Minimum Relativebarshadow_correction = -2.841e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 9? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 10
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.005e-03 median = -6.453e-05 stdev = 5.819e-03
Maximum Relativebarshadow_correction = 1.839e-03
Minimum Relativebarshadow_correction = -2.832e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 10? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 11
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.979e-03 median = -6.470e-05 stdev = 5.777e-03
Maximum Relativebarshadow_correction = 1.923e-03
Minimum Relativebarshadow_correction = -2.812e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 11? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 14
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.025e-03 median = -6.299e-05 stdev = 5.859e-03
Maximum Relativebarshadow_correction = 1.204e-03
Minimum Relativebarshadow_correction = -2.914e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 14? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 15
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.978e-03 median = -6.246e-05 stdev = 5.778e-03
Maximum Relativebarshadow_correction = 1.915e-03
Minimum Relativebarshadow_correction = -2.869e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 15? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 16
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.036e-03 median = -6.537e-05 stdev = 5.877e-03
Maximum Relativebarshadow_correction = 1.679e-03
Minimum Relativebarshadow_correction = -2.866e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 16? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 17
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.017e-03 median = -6.536e-05 stdev = 5.839e-03
Maximum Relativebarshadow_correction = 1.718e-03
Minimum Relativebarshadow_correction = -2.817e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 17? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 18
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.025e-03 median = -6.563e-05 stdev = 5.855e-03
Maximum Relativebarshadow_correction = 1.725e-03
Minimum Relativebarshadow_correction = -2.825e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 18? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 19
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.039e-03 median = -6.201e-05 stdev = 5.949e-03
Maximum Relativebarshadow_correction = 1.905e-03
Minimum Relativebarshadow_correction = -2.937e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 19? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 21
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.992e-03 median = -6.215e-05 stdev = 5.883e-03
Maximum Relativebarshadow_correction = 1.457e-03
Minimum Relativebarshadow_correction = -2.892e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 21? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 25
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.044e-03 median = -6.318e-05 stdev = 5.970e-03
Maximum Relativebarshadow_correction = 1.541e-03
Minimum Relativebarshadow_correction = -2.959e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 25? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 26
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.911e-03 median = -6.285e-05 stdev = 5.688e-03
Maximum Relativebarshadow_correction = 1.757e-03
Minimum Relativebarshadow_correction = -2.821e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 26? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 27
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.986e-03 median = -6.222e-05 stdev = 5.903e-03
Maximum Relativebarshadow_correction = 1.925e-03
Minimum Relativebarshadow_correction = -2.912e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 27? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 29
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.895e-03 median = -6.237e-05 stdev = 5.662e-03
Maximum Relativebarshadow_correction = 2.029e-03
Minimum Relativebarshadow_correction = -2.941e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 29? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 31
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.076e-03 median = -6.825e-05 stdev = 5.930e-03
Maximum Relativebarshadow_correction = 1.367e-03
Minimum Relativebarshadow_correction = -2.841e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 31? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 32
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.080e-03 median = -6.567e-05 stdev = 6.014e-03
Maximum Relativebarshadow_correction = 1.415e-03
Minimum Relativebarshadow_correction = -2.816e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 32? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 33
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.096e-03 median = -5.948e-05 stdev = 5.997e-03
Maximum Relativebarshadow_correction = 2.072e-03
Minimum Relativebarshadow_correction = -2.881e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 33? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 35
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.821e-03 median = -6.305e-05 stdev = 5.559e-03
Maximum Relativebarshadow_correction = 1.381e-03
Minimum Relativebarshadow_correction = -2.871e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 35? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 37
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.872e-03 median = -6.466e-05 stdev = 5.611e-03
Maximum Relativebarshadow_correction = 1.789e-03
Minimum Relativebarshadow_correction = -2.886e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 37? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 38
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.905e-03 median = -6.214e-05 stdev = 5.665e-03
Maximum Relativebarshadow_correction = 2.042e-03
Minimum Relativebarshadow_correction = -2.930e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 38? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 39
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.041e-03 median = -6.262e-05 stdev = 5.974e-03
Maximum Relativebarshadow_correction = 1.176e-03
Minimum Relativebarshadow_correction = -2.788e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 39? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 41
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:20:04,537 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:04,538 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.895e-03 median = -6.464e-05 stdev = 5.638e-03
Maximum Relativebarshadow_correction = 1.679e-03
Minimum Relativebarshadow_correction = -2.888e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 41? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 53
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
429.4560241214042 26.8976157966487
Creating final barshadow test plot...
2021-03-13 00:20:06,130 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:06,130 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:06,193 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:06,193 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.168e-03 median = -6.273e-05 stdev = 6.031e-03
Maximum Relativebarshadow_correction = 1.761e-03
Minimum Relativebarshadow_correction = -2.824e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 53? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 54
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
426.2587209927364 26.903679487152
Creating final barshadow test plot...
2021-03-13 00:20:07,794 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:07,794 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.166e-03 median = -6.667e-05 stdev = 6.019e-03
Maximum Relativebarshadow_correction = 1.585e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 54? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 1
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.022e-03 median = -6.624e-05 stdev = 5.944e-03
Maximum Relativebarshadow_correction = 1.209e-03
Minimum Relativebarshadow_correction = -2.936e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 1? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 2
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.998e-03 median = -6.297e-05 stdev = 5.904e-03
Maximum Relativebarshadow_correction = 1.782e-03
Minimum Relativebarshadow_correction = -2.922e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 2? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 3
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.885e-03 median = -6.028e-05 stdev = 5.643e-03
Maximum Relativebarshadow_correction = 1.703e-03
Minimum Relativebarshadow_correction = -2.868e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 3? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 4
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.939e-03 median = -5.839e-05 stdev = 5.720e-03
Maximum Relativebarshadow_correction = 1.743e-03
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 4? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 5
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.070e-03 median = -6.476e-05 stdev = 6.004e-03
Maximum Relativebarshadow_correction = 1.519e-03
Minimum Relativebarshadow_correction = -2.908e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 5? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 12
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.984e-03 median = -5.549e-05 stdev = 5.783e-03
Maximum Relativebarshadow_correction = 1.209e-03
Minimum Relativebarshadow_correction = -2.851e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 12? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 13
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.069e-03 median = -5.870e-05 stdev = 5.989e-03
Maximum Relativebarshadow_correction = 1.744e-03
Minimum Relativebarshadow_correction = -2.906e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 13? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 20
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.930e-03 median = -5.659e-05 stdev = 5.715e-03
Maximum Relativebarshadow_correction = 1.938e-03
Minimum Relativebarshadow_correction = -2.900e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 20? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 22
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.064e-03 median = -6.398e-05 stdev = 5.940e-03
Maximum Relativebarshadow_correction = 2.135e-03
Minimum Relativebarshadow_correction = -2.875e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 22? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 23
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.853e-03 median = -6.602e-05 stdev = 5.603e-03
Maximum Relativebarshadow_correction = 1.440e-03
Minimum Relativebarshadow_correction = -2.852e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 23? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 24
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.015e-03 median = -6.569e-05 stdev = 5.841e-03
Maximum Relativebarshadow_correction = 1.784e-03
Minimum Relativebarshadow_correction = -2.835e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 24? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 28
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.845e-03 median = -6.542e-05 stdev = 5.594e-03
Maximum Relativebarshadow_correction = 1.789e-03
Minimum Relativebarshadow_correction = -2.914e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 28? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 30
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.026e-03 median = -6.313e-05 stdev = 5.846e-03
Maximum Relativebarshadow_correction = 1.936e-03
Minimum Relativebarshadow_correction = -2.923e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 30? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 34
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.782e-03 median = -6.478e-05 stdev = 5.480e-03
Maximum Relativebarshadow_correction = 1.829e-03
Minimum Relativebarshadow_correction = -2.852e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 17%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 34? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 36
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.849e-03 median = -7.007e-05 stdev = 5.567e-03
Maximum Relativebarshadow_correction = 1.244e-03
Minimum Relativebarshadow_correction = -2.806e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 36? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 40
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
717.8478879652469 26.906201801445103
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.881e-03 median = -7.021e-05 stdev = 5.577e-03
Maximum Relativebarshadow_correction = 1.526e-03
Minimum Relativebarshadow_correction = -2.796e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 18%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 40? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 42
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
736.5492365260191 26.907388994041778
Creating final barshadow test plot...
Relative barshadow_correction : mean = -2.978e-03 median = -6.346e-05 stdev = 5.746e-03
Maximum Relativebarshadow_correction = 2.072e-03
Minimum Relativebarshadow_correction = -2.791e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 42? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 43
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
689.9349073679869 26.898072914723645
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.042e-03 median = -6.358e-05 stdev = 5.829e-03
Maximum Relativebarshadow_correction = 1.221e-03
Minimum Relativebarshadow_correction = -2.884e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 43? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 44
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
679.9641907876581 26.902628246867557
Creating final barshadow test plot...
2021-03-13 00:20:43,241 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:43,242 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.989e-03 median = -6.600e-05 stdev = 5.740e-03
Maximum Relativebarshadow_correction = 1.406e-03
Minimum Relativebarshadow_correction = -2.910e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 44? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 45
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
675.2201065606389 26.909022673391682
Creating final barshadow test plot...
2021-03-13 00:20:44,873 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:44,873 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:44,936 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:44,936 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.057e-03 median = -5.880e-05 stdev = 5.986e-03
Maximum Relativebarshadow_correction = 1.425e-03
Minimum Relativebarshadow_correction = -2.889e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 45? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 46
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
628.3528797143198 26.907387263499682
Creating final barshadow test plot...
2021-03-13 00:20:46,559 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:46,559 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:46,622 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:46,622 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.046e-03 median = -6.672e-05 stdev = 5.988e-03
Maximum Relativebarshadow_correction = 1.793e-03
Minimum Relativebarshadow_correction = -2.787e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 9%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 46? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 47
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
566.0835177748166 26.901105539942886
Creating final barshadow test plot...
2021-03-13 00:20:48,251 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:48,252 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:48,313 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:48,314 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.014e-03 median = -6.387e-05 stdev = 5.813e-03
Maximum Relativebarshadow_correction = 1.517e-03
Minimum Relativebarshadow_correction = -2.902e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 47? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 48
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
561.7669238150397 26.903533880206133
Creating final barshadow test plot...
2021-03-13 00:20:49,930 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:49,930 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:49,993 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:49,993 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.998e-03 median = -6.612e-05 stdev = 5.783e-03
Maximum Relativebarshadow_correction = 1.651e-03
Minimum Relativebarshadow_correction = -2.877e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 48? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 49
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
510.5417110307708 26.89942162711025
Creating final barshadow test plot...
2021-03-13 00:20:51,604 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:51,605 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:51,666 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:51,667 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.749e-03 median = -6.236e-05 stdev = 5.375e-03
Maximum Relativebarshadow_correction = 1.177e-03
Minimum Relativebarshadow_correction = -2.815e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 19%
-> 5xtheshold = 8%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 49? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 50
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
525.6815486602569 26.89982581835418
Creating final barshadow test plot...
Relative barshadow_correction : mean = -3.171e-03 median = -6.651e-05 stdev = 6.060e-03
Maximum Relativebarshadow_correction = 1.648e-03
Minimum Relativebarshadow_correction = -2.837e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 26%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 50? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
2021-03-13 00:20:54,484 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:54,485 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:54,546 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:54,547 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Working with slitlet 51 Slitlet name in fits file previous to barshadow and in barshadow output file are the same. Calculating barshadow correction... Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits Calculation of barshadow correction done. 518.2363133126122 26.906766488227944 Creating final barshadow test plot...
2021-03-13 00:20:56,159 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:56,159 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:56,221 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:56,221 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -3.104e-03 median = -6.292e-05 stdev = 5.902e-03
Maximum Relativebarshadow_correction = 1.358e-03
Minimum Relativebarshadow_correction = -2.734e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 18%
-> 5xtheshold = 11%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 51? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
Working with slitlet 52
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
507.37795245035966 26.908367350122248
Creating final barshadow test plot...
2021-03-13 00:20:57,828 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:57,828 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:57,889 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:57,889 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:57,890 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:57,891 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.997e-03 median = -7.102e-05 stdev = 5.697e-03
Maximum Relativebarshadow_correction = 1.044e-03
Minimum Relativebarshadow_correction = -2.715e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 25%
-> 3xtheshold = 19%
-> 5xtheshold = 10%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 52? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 55
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:20:59,475 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:59,476 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:59,477 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:59,478 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:59,538 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:59,539 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:20:59,540 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:20:59,540 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -2.784e-03 median = -7.856e-05 stdev = 5.219e-03
Maximum Relativebarshadow_correction = 1.028e-03
Minimum Relativebarshadow_correction = -2.143e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 24%
-> 3xtheshold = 20%
-> 5xtheshold = 7%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 55? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 56
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:21:01,081 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:01,081 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:21:01,082 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:01,083 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:21:01,144 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:01,145 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:21:01,146 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:01,147 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -1.870e-03 median = -1.437e-04 stdev = 3.586e-03
Maximum Relativebarshadow_correction = 1.258e-03
Minimum Relativebarshadow_correction = -1.043e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 20%
-> 3xtheshold = 20%
-> 5xtheshold = 0%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 56? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: PASSED
Working with slitlet 57
Slitlet name in fits file previous to barshadow and in barshadow output file are the same.
Calculating barshadow correction...
Reference file used for barshadow calculation: /grp/jwst/wit4/nirspec/CDP3/05_Other_Calibrations/5.3_BarShadow/referenceFilesBS-20160401/jwst-nirspec-mos1x1.bsrf.fits
Calculation of barshadow correction done.
nan nan
Creating final barshadow test plot...
2021-03-13 00:21:02,707 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:02,707 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide( 2021-03-13 00:21:02,709 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/fromnumeric.py:3419: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, 2021-03-13 00:21:02,709 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/core/_methods.py:180: RuntimeWarning: invalid value encountered in true_divide ret = um.true_divide(
Relative barshadow_correction : mean = -4.322e-03 median = -8.803e-05 stdev = 7.747e-03
Maximum Relativebarshadow_correction = 1.475e-03
Minimum Relativebarshadow_correction = -2.267e-02
Percentage of pixels where median of relative differences is greater than:
-> 1xtheshold = 33%
-> 3xtheshold = 17%
-> 5xtheshold = 17%
*** WARNING: More than 10% of pixels have a median value greater than 3xthreshold!
*** WARNING: More than 10% of pixels have a median value greater than 5xthreshold!
* PASS/FAIL TEST: Is the median <= threshold for slit 57? PASSED
* Result of number of points greater than 3*threshold greater than 10%: FAILED
* Result of number of points greater than 5*threshold greater than 10%: FAILED
* The test of barshadow_correction for slitlet 6 PASSED.
* The test of barshadow_correction for slitlet 7 PASSED.
* The test of barshadow_correction for slitlet 8 PASSED.
* The test of barshadow_correction for slitlet 9 PASSED.
* The test of barshadow_correction for slitlet 10 PASSED.
* The test of barshadow_correction for slitlet 11 PASSED.
* The test of barshadow_correction for slitlet 14 PASSED.
* The test of barshadow_correction for slitlet 15 PASSED.
* The test of barshadow_correction for slitlet 16 PASSED.
* The test of barshadow_correction for slitlet 17 PASSED.
* The test of barshadow_correction for slitlet 18 PASSED.
* The test of barshadow_correction for slitlet 19 PASSED.
* The test of barshadow_correction for slitlet 21 PASSED.
* The test of barshadow_correction for slitlet 25 PASSED.
* The test of barshadow_correction for slitlet 26 PASSED.
* The test of barshadow_correction for slitlet 27 PASSED.
* The test of barshadow_correction for slitlet 29 PASSED.
* The test of barshadow_correction for slitlet 31 PASSED.
* The test of barshadow_correction for slitlet 32 PASSED.
* The test of barshadow_correction for slitlet 33 PASSED.
* The test of barshadow_correction for slitlet 35 PASSED.
* The test of barshadow_correction for slitlet 37 PASSED.
* The test of barshadow_correction for slitlet 38 PASSED.
* The test of barshadow_correction for slitlet 39 PASSED.
* The test of barshadow_correction for slitlet 41 PASSED.
* The test of barshadow_correction for slitlet 53 PASSED.
* The test of barshadow_correction for slitlet 54 PASSED.
* The test of barshadow_correction for slitlet 1 PASSED.
* The test of barshadow_correction for slitlet 2 PASSED.
* The test of barshadow_correction for slitlet 3 PASSED.
* The test of barshadow_correction for slitlet 4 PASSED.
* The test of barshadow_correction for slitlet 5 PASSED.
* The test of barshadow_correction for slitlet 12 PASSED.
* The test of barshadow_correction for slitlet 13 PASSED.
* The test of barshadow_correction for slitlet 20 PASSED.
* The test of barshadow_correction for slitlet 22 PASSED.
* The test of barshadow_correction for slitlet 23 PASSED.
* The test of barshadow_correction for slitlet 24 PASSED.
* The test of barshadow_correction for slitlet 28 PASSED.
* The test of barshadow_correction for slitlet 30 PASSED.
* The test of barshadow_correction for slitlet 34 PASSED.
* The test of barshadow_correction for slitlet 36 PASSED.
* The test of barshadow_correction for slitlet 40 PASSED.
* The test of barshadow_correction for slitlet 42 PASSED.
* The test of barshadow_correction for slitlet 43 PASSED.
* The test of barshadow_correction for slitlet 44 PASSED.
* The test of barshadow_correction for slitlet 45 PASSED.
* The test of barshadow_correction for slitlet 46 PASSED.
* The test of barshadow_correction for slitlet 47 PASSED.
* The test of barshadow_correction for slitlet 48 PASSED.
* The test of barshadow_correction for slitlet 49 PASSED.
* The test of barshadow_correction for slitlet 50 PASSED.
* The test of barshadow_correction for slitlet 51 PASSED.
* The test of barshadow_correction for slitlet 52 PASSED.
* The test of barshadow_correction for slitlet 55 PASSED.
* The test of barshadow_correction for slitlet 56 PASSED.
* The test of barshadow_correction for slitlet 57 PASSED.
*** Final result for barshadow test will be reported as PASSED ***
('* Barshadow validation test took ', '1.8179014285405477 minutes to finish.')
Did barshadow validation test passed?
*** Final result for barshadow test will be reported as PASSED ***
# Quickly see if the test passed
print('These are the final results of the tests: ')
for key, val in results_dict.items():
print(key, val)
2021-03-13 00:21:02,860 - stpipe - WARNING - /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/ipykernel/ipkernel.py:283: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that happen during thetransform in `preprocessing_exc_tuple` in IPython 7.17 and above. and should_run_async(code)
These are the final results of the tests: mos_prism_clear The test is skipped for POINT sources, since the correction is not applied mos_g140m_f100lp *** Final result for barshadow test will be reported as PASSED ***
Author: Maria A. Pena-Guerrero, Staff Scientist II - Systems Science Support, NIRSpec
Updated On: Jan/22/2021